0
Sections =     (
            {
        EnglishName = whatsnew;
        ID = 1;
        Name = "What's New";
        ParentSectionID = 0;
    }

这是我要访问的字典 我可以访问它的名称。

4

1 回答 1

0

从 OP 评论,这里是获取name值的方法NSMutableDictionary

(假设您的 NSMutableDictionary 被命名为Sections):

NSString *name = (NSString *)[Sections objectForKey:@"Name"];
于 2012-09-05T10:32:48.053 回答