1. NSMutableDictionary 생성 및 add 방법
//생성
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
//item add
[dictionary setObject:@"A Book about the Letter A" forKey:@"A"];
[dictionary setObject:@"A Book about the Letter B" forKey:@"B"];
[dictionary setObject:@"A Book about the Letter C" forKey:@"C"];
2. NSMutableDictionary remove 방법
// 전체 루프를 돌면서 각각의 아이템 삭제 작업을 해줘야합니다
for (id theKey in dictionary ) {
item = [[dictionary objectForKey:theKey] retain];
[item removeFromSuperview];
[item release];
item = nil;
}
[dictionary removeAllObjects];
[ dictionary release];
[ dictionary release];
'프로그래밍 > iOS' 카테고리의 다른 글
MPMoviePlayerController의 Notifications목록 (0) | 2011.06.02 |
---|---|
UIView 화면 터치시 single tap , double tap에 대한 구현 (0) | 2011.06.02 |
현재 UIView Animation Stop 방법 (0) | 2011.06.02 |
화면상에서 터치 이벤트 발생시 View에서 무시하기 방법 (0) | 2011.06.02 |
Static Class 만드는 방법 (0) | 2011.06.02 |