문자열을 식별자를 이용하여 배열로 나누기
componentsSeparatedByString 메소드
NSString *string = @"one:two:three:four";
NSArray *chunks = [string componetsSeparatedByString: @":"];
반대로 배열의 객체를 합쳐 하나의 문자열로 만들기
componentsJoinedByString 메소드 사용
string = [chunks componentsJoinedByString: @"-"];
결과 @"one-two-three-four"
출처 : Objective-C 2.0 (이종웅 저)
'Dev > iOS' 카테고리의 다른 글
[Objective-C] CGRect, CGPoint, CGSize (0) | 2011.07.20 |
---|---|
[objective-c] 아이폰 디렉토리 파일 가져오기 (0) | 2011.07.11 |
[Objective-C] 메서드 확장 (0) | 2011.06.27 |
[Objective-C] 터치 제스쳐(Gesture) 종류 (0) | 2011.06.20 |
[Objective-C] NSArray 사용법 예제 (0) | 2011.06.02 |