Objective-C教學
Objective-C 教學首頁
Objective-C 語言概述
Objective-C 開發環境(安裝配置)
Objective-C語言程序結構
Objective-C 基本語法
Objective-C 數據類型
Objective-C 變量
Objective-C 常量
Objective-C 運算符
Objective-C 算術運算符
Objective-C 關係運算符
Objective-C 邏輯運算符
Objective-C 位運算符
Objective-C 賦值運算符
Objective-C 循環
Objective-C while循環
Objective-C for循環
Objective-C do...while循環
Objective-C 嵌套循環
Objective-C break語句
Objective-C continue語句
Objective-C 決策
Objective-C if語句
Objective-C if...else 語句
Objective-C 嵌套 if 語句
Objective-C switch語句
Objective-C 嵌套switch語句
Objective-C 函數
Objective-C 函數按值調用
Objective-C 函數引用調用
Objective-C 塊
Objective-C Numbers/數字
Objective-C Arrays/數組
Objective-C 多維數組
Objective-C 數組作爲函數參數傳遞
Objective-C 從函數返回數組
Objective-C 指針的數組
Objective-C 指針
Objective-C 指針運算
Objective-C 數組的指針
Objective-C 指向指針的指針
Objective-C 傳遞函數的指針
Objective-C 函數返回指針
Objective-C NSString/字符串
Objective-C struct/結構
Objective-C 預處理器
Objective-C typedef
Objective-C 類型轉換
Objective-C 日誌處理
Objective-C 錯誤處理
命令行參數
Objective-C 類&對象
Objective-C 繼承
Objective-C 多態性
Objective-C 數據封裝
Objective-C Categories/類別
Objective-C Posing/冒充
Objective-C 擴展
Objective-C Protocols/協議
Objective-C 動態綁定
Objective-C 複合對象
Obj-C Foundation/基礎框架
Objective-C 數據存儲
Objective C 文本和字符串
Objective-C 日期和時間
Objective-C 異常處理
Objective-C 文件處理
Objective-C URL加載系統
Objective-C 快速枚舉
Objective-C 內存管理

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)