// 현재 날짜와 시간.
NSDate *now = [[NSDate alloc] init];
// 날짜 포맷.
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd"];
// 시간 포맷.
NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm:ss"];
NSString *theDate = [dateFormat stringFromDate:now];
NSString *theTime = [timeFormat stringFromDate:now];
NSString *updated = @"Updated: ";
updated = [updated stringByAppendingString:theDate];
updated = [updated stringByAppendingString:@" "];
updated = [updated stringByAppendingString:theTime];
NSLog(@"Updated: %@", updated);
[dateFormat release];
[timeFormat release];
[now release];
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
[Deprecated-iOS7] UITextAttributeTextColor (0) | 2014.12.02 |
---|---|
[APNs, Notification] 알림 설정 (iOS8 SDK 변화) (0) | 2014.10.16 |
RangeOfString 주의할 점 (0) | 2014.07.23 |
UINavitaionController - 생성, 이동 (0) | 2014.06.12 |
CLLocationManager - 간단한 예제 (0) | 2014.06.10 |
UITextView - 내용추가하고 자동으로 스크롤 내리기 (0) | 2014.06.10 |
NSArray내의 NSDictionary 그룹별로 추출하기 (2) | 2011.01.27 |
UINavigationController - 이전 뷰로 이동 (0) | 2011.01.14 |
아이폰 흔들기(shaking) 검사 (0) | 2010.12.28 |
뷰의 터치이벤트 (0) | 2010.12.14 |