[IOS / Object-C] - NSMutableArray 중복값 제거
IOS ( Object-C ) 2015. 1. 28. 19:04반응형
NSMutableArray *_userIds = [NSMutableArray new];
for( NSInteger i = 0; i < 3; i++ ) {
[_userIds insertObject:@"aaaaaaaaaa" atIndex:i];
}
NSOrderedSet *userSet = [[NSOrderedSet alloc] initWithArray:_userIds];
_userIds = [[NSMutableArray alloc] initWithArray:[userSet array]];
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS / Object-C] - UITableView scroll bottom 스크롤 하단으로 보내기 (0) | 2016.10.05 |
---|---|
[IOS] - App Transport Security has blocked a cleartext HTTP 대응 방안 (0) | 2016.09.19 |
[IOS / Object-C] - 테이블 뷰 세션칸 배경 색상바꾸기 / viewForHeaderInSection (0) | 2014.12.18 |
[IOS / Object-C] - UITextField 터치시 키보드 늦게 올라올때 대처법 / Keyboard slow (0) | 2014.12.15 |
[IOS / Object-C] - IOS 문자열 치환 Replace (0) | 2014.12.10 |