'IOS ( Object-C )'에 해당되는 글 45건

  1. 2014.07.18 [IOS] - IOS UIView fadeOut & fadeIn, UIView animation
  2. 2014.07.18 [IOS] - IOS 외부 이미지 불러오기, URL Image
  3. 2014.07.16 [IOS / Object-C] - IOS HTTP 네트워크 통신
  4. 2014.07.11 [IOS] - IOS System Version 정보 구하기, IOS 버전 구하기
  5. 2014.07.08 [IOS] - IOS UIAlertView 버튼 이벤트
  6. 2014.07.08 [IOS] - IOS Method Delay, IOS setTimeOut 매서드 실행 딜레이
  7. 2014.07.08 [IOS] - IOS 최상위 Window 객체 가져오기
  8. 2014.07.01 [IOS] - TextField keyboard Show, hide 텍스트필드 키보드 보이기, 숨기기
  9. 2014.07.01 [IOS] - IOS TextField Vertical align middle 텍스트 필드 세로 가운데 정렬
  10. 2014.07.01 [IOS] - IOS TextField Password 아이폰 비밀번호 키보드 타입

[IOS] - IOS UIView fadeOut & fadeIn, UIView animation

IOS ( Object-C ) 2014. 7. 18. 11:54
반응형

[self setFadeOut:self.view];

[self setFadeIn:self.view];


// Set Fade Out Pop

- (void) setFadeOut : (UIView *) target {

  [target setAlpha:0];


  [UIView animateWithDuration:Dialog_Animation_Delay

                        delay:0

                      options: UIViewAnimationOptionCurveEaseInOut

                   animations:^{

                     [target setAlpha:1];

                   }

                   completion:^(BOOL finished){

NSLog(@"Set Fade Out Call Back");

                   }];

}


// Set Fade In Pop

- (void) setFadeIn : (UIView *) target  {

  [target setAlpha:1];


  [UIView animateWithDuration:Dialog_Animation_Delay

                        delay:0

                      options: UIViewAnimationOptionCurveEaseInOut

                   animations:^{

                     [target setAlpha:0];

                   }

                   completion:^(BOOL finished){

NSLog(@"Set Fade In Call Back");

                   }];

}

반응형
:

[IOS] - IOS 외부 이미지 불러오기, URL Image

IOS ( Object-C ) 2014. 7. 18. 08:49
반응형

NSString *attach = @"http://mrkn.tistory.com";


NSURL *url        = [NSURL URLWithString:attach];

NSData *imageFile = [NSData dataWithContentsOfURL:url];

UIImage *image    = [UIImage imageWithData:imageFile];


CGSize imageSize  = image.size;


NSLog(@" Image Size : Width = %f Height = %f", imageSize.width, imageSize.height);

반응형
:

[IOS / Object-C] - IOS HTTP 네트워크 통신

IOS ( Object-C ) 2014. 7. 16. 14:43
반응형

NSMutableData *receiveData;


- (void) sendData : (NSString *) url : (NSString *) value : (NSString *) sendType {


NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];


  NSString *post   = value;

  NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];


  [request setURL:[NSURL URLWithString:url]];

  [request setHTTPMethod:sendType];

  [request setHTTPBody:[value dataUsingEncoding:NSUTF8StringEncoding]];

  [request setCachePolicy:NSURLRequestUseProtocolCachePolicy];

  [request setTimeoutInterval:15.0f];

  [request setValue:@"Mozilla/4.0 (compatible;)" forHTTPHeaderField:@"User-Agent"];

  [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

  [request setHTTPBody:postData];


  NSURLConnection *connection = [NSURLConnection connectionWithRequest : request

                                                              delegate : self];


}



// Receive Start to Submit

- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *) aResponse {

  NSLog(@" Receive Start ");

  receiveData = [[NSMutableData alloc] init];

}


// Connection Error Event

- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *) error {

  [self setRetryGetData];

  NSLog(@" Receive Error ");

}


// Connection Receive Event

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *) data {

  NSLog(@" Receiving............ ");

  [receiveData appendData:data];

}


// Connection Receive Finished

- (void) connectionDidFinishLoading : (NSURLConnection *) connection {

  NSLog(@" Receive Finished ");


  NSLog(@" Receive Data : %@", receiveData);

}

반응형
:

[IOS] - IOS System Version 정보 구하기, IOS 버전 구하기

IOS ( Object-C ) 2014. 7. 11. 10:38
반응형

NSString* version = [[UIDevice currentDevice] systemVersion];


NSLog(@"Version : %@", version);


return version;

반응형
:

[IOS] - IOS UIAlertView 버튼 이벤트

IOS ( Object-C ) 2014. 7. 8. 15:48
반응형

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

  NSInteger tag = alertView.tag;


  if( tag == 1 ) {

    if( buttonIndex == 0 ) {

왼쪽 버튼

    } else if ( buttonIndex == 1 ){

      오른쪽 버튼

    }

  }

}

반응형
:

[IOS] - IOS Method Delay, IOS setTimeOut 매서드 실행 딜레이

IOS ( Object-C ) 2014. 7. 8. 10:15
반응형

[self startMethod];


- (void) startMethod {

  NSTimeInterval delay = 1.5;

  [self performSelector:@selector(showIndicator) withObject:nil afterDelay:delay];

}


- (void) showIndicator {

  [MRKN_Function MRKN_ShowLoading:TopWindow];

}

반응형
:

[IOS] - IOS 최상위 Window 객체 가져오기

IOS ( Object-C ) 2014. 7. 8. 09:34
반응형

UIWindow *TopWindow = [[UIApplication sharedApplication] keyWindow];

반응형
:

[IOS] - TextField keyboard Show, hide 텍스트필드 키보드 보이기, 숨기기

IOS ( Object-C ) 2014. 7. 1. 17:38
반응형


[textField becomeFirstResponder]; // 키보드 출력

[textField resignFirstResponder];    // 키보드 숨김

반응형
:

[IOS] - IOS TextField Vertical align middle 텍스트 필드 세로 가운데 정렬

IOS ( Object-C ) 2014. 7. 1. 16:45
반응형

textField.contentVerticalAlignment  = UIControlContentVerticalAlignmentCenter;

반응형
:

[IOS] - IOS TextField Password 아이폰 비밀번호 키보드 타입

IOS ( Object-C ) 2014. 7. 1. 13:44
반응형

[textField setSecureTextEntry:YES];

반응형
: