- (NSString *)getFileName {
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMdd_hhmmss_"];
NSDate *date = [[NSDate alloc] init];
NSString *fileName = [NSString stringWithFormat:@"%@%@",
[dateFormatter stringFromDate:date],
[[[NSString stringWithFormat:@"%f", [[NSDate date]timeIntervalSince1970]] componentsSeparatedByString:@"."] objectAtIndex:1]];
[date release];
[dateFormatter release];
return fileName;
}
'iOS' 카테고리의 다른 글
[IPhone] UITextView를 UITextField의 placeholder 처럼 사용하기 (0) | 2012.09.12 |
---|---|
UIImage crop 및 resize category 추가 (0) | 2012.09.10 |
Iphone- Make a UITextView move up when keyboard is present (0) | 2012.09.04 |
navigationBar 이미지 설정하기와 iOS5, iOS4 (0) | 2012.09.04 |
[UIBarButtonItem] UIBarButtonItem 이미지로 표현하기 (0) | 2012.09.04 |