본문 바로가기

기술/iOS29

NSString -> NSDate 변환 NSDateFormatter *dateformat = [[NSDateFormatter alloc] init];// AM,PM으로 할 경우 hh// 24시간으로 할 경우 HH[dateformat setDateFormat:@"yyyyMMddhhmmss"]; NSDate *beginTime = [dateformat dateFromString:@"20120101000000"]; NSDate *endTime = [dateformat dateFromString:@"20121231235959"]; NSDate *currentTime = [NSDate date]; 2012. 12. 7.
Image Filter 관련 사이트들. 1. LINUX, WINDOWS, MAC OS X, iOS - http://www.imagemagick.org/script/index.php . 컨버터 유틸리티로 다양한 포맷의 이미지를 변환, 리사이즈, 합성, 생성 할 수 있음. (포맷변경, 확대, 축소, 리사이즈, 회전, 좌우상하반전, 흑백, 갈색효과, 밝게 어둡게, 자르기, 캔버스, 글자이미지 생성, 이미지 합성 등) . LINUX, UNIX, Windows, MaxOSX, iOS 등에서 사용가능한 Free Software. . Command-line의 이미지 에디팅 툴. . Source code 제공. 2. iOS 1) Open Source - https://github.com/OmidH/Filtrr . An iOS Image filter libr.. 2012. 10. 19.
APNS 참고 사이트. 1) Apple Developer Site - https://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html -https://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW9 ; 애플 개발자 사이트의 APNS Guide 문서. 2) 일반 사이트 - http:.. 2012. 7. 3.
한글은 2자, 영문은 1자로 Length 를 알고 싶을 때. dataUsingEncoding의 속성을 아래와 같이 주면 된다. NSData *stringData = [textField.text dataUsingEncoding:0x80000000+kCFStringEncodingDOSKorean]; NSLog(@" %d", [stringData length]); 한글은 2자씩, 영문은 1자씩 계산해서 length 를 뱉어낸다. 2012. 3. 21.
UITabBarController 사용 시 다른 탭바가 먼저 보여지게 할 경우. UITabBarController를 이용하다 보면 앱 실행 시 첫번째 탭바 말고 중간이나 다른 탭바가 먼저 화면에 노출되어야 하는 경우가 있다. 탭바 속성 중에 self.tabBarController.selectedIndex = 3; 로 설정해 줄 수 있는데, 화면은 나타나지 않는 경우가 있다. 이 때, 아래 메소드를 이용해주면 된다. [self.tabBarController.selectedViewController viewDidAppear:YES]; 2012. 2. 29.
NSXMLParser 이용 중 '<' 앞의 whiteSpace가 문제 될 때. Cake 0.55 Regular Chocolate Blueberry None Glazed Sugar 위와 같은 XML 을 NSXMLParser로 파싱하다 보면 (void)parser:foundCharacters 에서 ' 2012. 2. 23.