원하는 날짜를 NSDate로 바꾸는 함수
- 사용법
[self getNSDateFromYear:2016 withMonth:3 withDay:16 withHour:9 withMin:41 withSecond:0];
- 함수
- (NSDate*)getNSDateFromYear:(int)year withMonth:(int)mon withDay:(int)day withHour:(int)hour withMin:(int)min withSecond:(int)second
{
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setYear:year];
[components setMonth:mon];
[components setDay:day];
[components setHour:hour];
[components setMinute:min];
[components setSecond:second];
return [calendar dateFromComponents:components];
}
'프로그래밍 > iOS' 카테고리의 다른 글
[iOS] rotate 이미지뷰 만들기 (0) | 2016.04.08 |
---|---|
[iOS] Timer 라벨 만들기 (0) | 2016.03.24 |
[iOS] 신뢰할 수 없는 기업용 app 개발자 (0) | 2016.03.03 |
[iOS] CMBufferSample 못찾을 경우 (0) | 2016.02.03 |
[iOS] 라이브러리에 포함된 .o파일 확인하기 (0) | 2016.01.27 |