objective-c 編程總結(第五篇)集合類型操作

來源:互聯網
上載者:User

集合類型,常用的包括NSArray, NSDictionary. 以及用於遍曆的NSEnumerator對象。

建立不可變的數組對象:

NSArray * ary = [NSArray arrayWithObjects:@"title", @"content", [NSNumber numberWithInt:2],nil];

需要注意的是,NSArray中不能儲存基本類型如float,int,double之類的,否則都會被設定為0。另一個,上面這個調用必須用nil來結尾,這也意味著NSArray中不能儲存nil。

對數組對象的遍曆:

NSEnumerator * enu = [ary objectEnumerator];

id obj;

while(obj = [enu nextObject]){

      if([obj isKindOfClass:[NSString class]])//這裡不能使用isMemberOf。因為這裡返回的實際類型是__NSCFConstantString.

      {NSLog(@"%@", obj);}

}

建立可變數組使用NSMutableArray.也可以通過[ary mutableCopy]直接返回一個可變數組。

NSMutableArray * mary = [ary mutableCopy];

[mary addObject:@"this is the spliter"];

另外每一個數組都有一個方法componentsJoinedByString,對應於NSString的componentsSeperatedByString.

 

最後是NSDictionary.

[NSDictionary * dic = [[NSDictionary dictionaryWithObjectsAndKeys:@"Lucy", @"name", [NSNumber numberWithInt:17], @"age", nil];//同樣需要使用nil來結尾

NSEnumerator * enu = [dic keyEnumerator];

id key;

while(key =[enu nextObject]){

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.