반응형 분류 전체보기150 NSString과 NSMutableString NSString과 NSMutableString의 기본 메서드 http://dw1028.tistory.com/126 NSString과 NSMutableString의 차이 http://blog.daum.net/shakalis/16 2014. 4. 25. AFNetworking download progressing AFNetworking download progressing http://stackoverflow.com/questions/13512846/progressview-for-downloading-some-files-in-object-c http://stackoverflow.com/questions/16453655/objective-c-downloading-file-with-progress-bar http://stackoverflow.com/questions/16393653/how-to-use-progressview-in-xcode-for-show-downloads-status 2014. 4. 25. NSString 문자열 치환 - (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement NSString *str = @"This is a string"; str = [str stringByReplacingOccurrencesOfString:@"string" withString:@"duck"]; 2014. 4. 25. NSTimer NSTimer *myTImer = [NSTimer timerWithTimeInterval:2.0 target:self selector:@selector(MethodName) userInfo:nil repeats:YES];NSRunLoop *runner = [NSRunLoop currentRunLoop];[runner addTimer:reconnectTimer forMode: NSDefaultRunLoopMode]; or [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(MethodName) userInfo:nil repeats:YES]; * timeWithTimeInterval:target:selector:userInfo.. 2014. 4. 25. 이전 1 ··· 30 31 32 33 34 35 36 ··· 38 다음 반응형