Foundation--NSDictionary

創建字典

    NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"one",@"1",@"two",@"2", nil];
    //object:one,two;key:1,2
獲取字典中的元素

[dictionary objectForKey:@"one"];

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章