최초 작성일 : 2010/04/11 09:00
사용된 메서드 정리
메서드명 : - (NSArray *)componentsSeparatedByString:(NSString *) separator
기능 : separator를 구분자로 하여 분리된 배열을 반환함
선언된 클래스 : NSString
메서드명 : + (NSArray *)knownTimeZoneNames:
기능 : 시스템이 알고있는 모든 time zone의 ID를 문자열 배열로 반환함
선언된 클래스 : NSTimeZone
메서드명 : + (id)timeZoneWithName:(NSString *)aTimeZoneNZme
기능 : 인자로 넘어온 ID와 일치하는 time zone 객체를 반환
선언된 클래스 : NSTimeZone
메서드명 : - (id)initWithKey:(NSString *)keyPath ascending:(BOOL)ascending
기능 : 인자로 넘어온 key path를 정렬기준으로 역시 인자로 넘어온 정렬 순서를 적용하고
기본 비교 selector를 통해 초기화된 NSSortDescriptor 객체를 반환한다.
ascending인자가 YES이면 오름차순 NO이면 내림차순 정렬한다.
선언된 클래스 : NSSortDescriptor
메서드명 : - (id)initWithObject:(const id *)object count:(NSUInteger)count
기능 : 인자로 넘어온 C array로부터 count 갯수만큼의 객체를 뽑아 포함시키는 새로운 배열을 할당함
선언된 클래스 : NSArray 클래스
메서드명 : -(void)sortUsingDescriptor:(NSArray *)sortDescriptors
기능 : 인자로 넘어온 NSSortDescriptor 객체의 배열을 사용하여 배열을 정렬함.
선언된 클래스 : NSMutableArray
'Development > iPhone' 카테고리의 다른 글
[옛 글] SimpleSectionedTableView - RootViewController (0) | 2013.07.16 |
---|---|
[옛 글] SimpleSectionedTableView - SimpleSectionedTableViewAppDelegate (0) | 2013.07.15 |
[옛 글] [APIs] NSSortDescriptor (0) | 2013.07.12 |
[옛 글] [Tip] objective-c 메서드의 종류 (0) | 2013.07.12 |
[옛 글] SimpleSectionedTableView - Region, TimeZoneWrapper (0) | 2013.07.12 |