«nscalendar» 태그된 질문

17
NSDate는 년 / 월 / 일을받습니다.
NSDate다른 정보가없는 경우 객체 의 년 / 월 / 일을 어떻게 얻을 수 있습니까? 나는 아마 이것과 비슷한 것을 할 수 있음을 알고 있습니다. NSCalendar *cal = [[NSCalendar alloc] init]; NSDateComponents *components = [cal components:0 fromDate:date]; int year = [components year]; int month = [components month]; int day = [components …

20
NSDate가 오늘인지 확인하는 방법?
확인하는 방법 NSDate오늘 소속 ? 에서의 처음 10자를 사용하여 확인했습니다 [aDate description]. [[aDate description] substringToIndex:10]문자열을 반환 "YYYY-MM-DD"하므로 문자열을에서 반환 한 문자열과 비교했습니다 [[[NSDate date] description] substringToIndex:10]. 더 빠르고 깔끔한 확인 방법이 있습니까? 감사.


17
NSDate를 사용하여 요일 가져 오기
"YYYY-MM-DD"형식의 문자열을 가져 와서 해당 주와 관련하여 날짜 위치를 나타내는 int를 뱉어내는 메서드를 만들었습니다 (월간 겹침 여부에 관계없이). 예를 들어 sunday = 1 monday = 2 등등. 내 코드는 다음과 같습니다. func getDayOfWeek(today:String)->Int{ var formatter:NSDateFormatter = NSDateFormatter() formatter.dateFormat = "YYYY-MM-DD" var todayDate:NSDate = formatter.dateFromString(today)! var myCalendar:NSCalendar = NSCalendar(calendarIdentifier: NSGregorianCalendar) var …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.