반응형
int64_t time = [[SecondData] longLongValue]; NSTimeInterval timeInterval = (time/1000); NSDate *theDate = [[NSDate alloc]initWithTimeIntervalSince1970: timeInterval]; NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; [dateFormat setLocale:[NSLocale currentLocale]]; [dateFormat setDateFormat:@"HH:mm"]; //받고싶은 형태 NSString *time2 = [dateFormat stringFromDate:theDate];
반응형
'프로그램 > iOS' 카테고리의 다른 글
iOS 라벨의 크기에 맞춰 동적으로 길이주기 (0) | 2016.03.18 |
---|---|
ScrollView를 이용하여 PageView처럼 사용 (0) | 2016.03.17 |
AppDelegate 실행순서 (0) | 2016.03.14 |
iOS 화면 이동하기. (0) | 2016.03.09 |
동적으로 생성한 View의 버튼 이벤트 (0) | 2016.03.04 |