Objective-C 數據存儲
數據存儲和檢索是在任何程序中的最重要的。在Objective-C中,我們一般不會依賴於像鏈表結構,因爲它使複雜的工作。相反,我們使用的NSArray,NSDictionary,NSSet及其可變形式等的集合。
NSArray & NSMutableArray
NSArray是用來裝不可變的對象數組,NSMutableArray用於容納一個可變數組對象。
Mutablility有助於改變數組中運行一個預分配的數組,但如果我們使用NSArray 只能更換現有數組,並不能改變現有數組的內容。
NSArray 的重要方法如下:
alloc/initWithObjects: 用來初始化一個數組對象。
objectAtIndex: 在特定索引allReturns對象。
count: 返回的對象的數量
NSMutableArray繼承自NSArray,因此NSMutableArray有NSArray 所有實例方法
重要的 NSMutableArray 方法如下:
removeAllObjects: 清空數組。
addObject: 數組末尾插入一個給定的對象。
removeObjectAtIndex: 這是用來刪除objectAt 指定索引的對象
exchangeObjectAtIndex:withObjectAtIndex: 改變陣列中的對象在給定的索引。
replaceObjectAtIndex:withObject: 替換的對象與對象在索引。
我們一定要記住,上述列表只是經常使用的方法,我們可以在我們的XCode跳進各自的類要知道更多的方法,在這些類。下面是一個簡單的例子。
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSArray *array = [[NSArray alloc] initWithObjects:@"string1", @"string2",@"string3",nil]; NSString *string1 = [array objectAtIndex:0]; NSLog(@"The object in array at Index 0 is %@",string1); NSMutableArray *mutableArray = [[NSMutableArray alloc]init]; [mutableArray addObject: @"string"]; string1 = [mutableArray objectAtIndex:0]; NSLog(@"The object in mutableArray at Index 0 is %@",string1); [pool drain]; return 0; }
現在,當我們編譯並運行程序,我們會得到以下的結果。
2013-09-29 02:33:23.195 demo[3487] The object in array at Index 0 is string1
2013-09-29 02:33:23.196 demo[3487] The object in mutableArray at Index 0 is string
在上面的程序中,我們已經看到 NSMutableArray 和 NSArray 的一個簡單的區別,在這裏我們可以插入一個字符串分配後可變數組。
NSDictionary & NSMutableDictionary
NSDictionary 用於容納一個不可變的對象,字典 NSMutableDictionary 用於容納一個可變的對象字典。
重要的NSDictionary方法如下
alloc/initWithObjectsAndKeys: 初始化一個新分配的字典帶構建從指定的集合值和鍵的條目。
valueForKey: 返回與給定鍵關聯的值。
count: 返回在字典中的條目的數量。
NSMutableDictionary 繼承自 NSDictionary ,因此NSMutableDictionary 實例擁有 NSDictionary 的所有方法
重要的NSMutableDictionary方法如下:
removeAllObjects:清空字典條目。
removeObjectForKey: 從字典刪除給定鍵及其關聯值。
setValue:forKey: 添加一個給定的鍵 - 值對到字典中。
字典的一個簡單的例子如下:
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys: @"string1",@"key1", @"string2",@"key2",@"string3",@"key3",nil]; NSString *string1 = [dictionary objectForKey:@"key1"]; NSLog(@"The object for key, key1 in dictionary is %@",string1); NSMutableDictionary *mutableDictionary = [[NSMutableDictionary alloc]init]; [mutableDictionary setValue:@"string" forKey:@"key1"]; string1 = [mutableDictionary objectForKey:@"key1"]; NSLog(@"The object for key, key1 in mutableDictionary is %@",string1); [pool drain]; return 0; }
現在,當我們編譯並運行程序,我們會得到以下的結果。
2013-09-29 02:34:50.528 demo[9135] The object for key, key1 in dictionary is string1
2013-09-29 02:34:50.528 demo[9135] The object for key, key1 in mutableDictionary is string
NSSet & NSMutableSet
NSSet 是用來保持一個不變集的不同對象,NSMutableDictionary 用於容納一個可變設置的不同對象。
重要的NSSet方法如下:
alloc/initWithObjects: 初始化一個新分配的成員採取從指定的對象列表。
allObjects - 返回一個數組,包含集合的成員或一個空數組(如果該組沒有成員)。
count: 返回集合中的成員數量。
NSMutableSet 繼承自NSSet,因此所有NSSet方法的在NSMutableSet 的實例是可用的。
重要的 NSMutableSet方法如下:
removeAllObjects: 清空其所有成員的集合。
addObject: 添加一個給定的對象的集合(如果它還不是成員)。
removeObject: 從集合中刪除給定的對象。
集合的一個簡單的例子如下:
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSSet *set = [[NSSet alloc] initWithObjects:@"string1", @"string2",@"string3",nil]; NSArray *setArray = [set allObjects]; NSLog(@"The objects in set are %@",setArray); NSMutableSet *mutableSet = [[NSMutableSet alloc]init]; [mutableSet addObject:@"string1"]; setArray = [mutableSet allObjects]; NSLog(@"The objects in mutableSet are %@",setArray); [pool drain]; return 0; }
現在,當我們編譯並運行程序,我們會得到以下的結果。
2013-09-29 02:35:40.221 demo[12341] The objects in set are (string3, string2, string1)
2013-09-29 02:35:40.222 demo[12341] The objects in mutableSet are (string1)