// NSDate -> NSStirng NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSDate *now = [[NSDate alloc] init]; NSString *nowText = [dateFormatter stringFromDate:now]; // 2014-08-28 04:12:21 // NSStirng -> NSDate NSString *dateString = @"2014-08-28"; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd"]; NSDate *dateFromString = [dateFormatter stringFromDate:dateString]; // NSDate로 바뀜..
'Swift와 iOS' 카테고리의 다른 글
[iOS Objective-C] 공유하기 - 메시지, 카카오톡, 페이스북, 트위터... (0) | 2014.11.14 |
---|---|
[iOS Objective-C] Keyboard Delegate받아서 애니메이션하기 (0) | 2014.11.11 |
[iOS Objective-C] gif깔끔하게 지원해주는 ImageView 오픈소스 라이브러리 (0) | 2014.11.09 |
[iOS Objective-C] UIView 에서 "ease" 애니메이션 적용하기 (0) | 2014.11.09 |
[iOS, Objectiv-C] 숫자에 3자리마다 쉽표 찍기 (int->NSString) (0) | 2014.11.09 |
WRITTEN BY
- tucan.dev
개인 iOS 개발, tucan9389
,