How to access the keys in dictionary in object-c

来源:互联网 发布:近几年的网络暴力事件 编辑:程序博客网 时间:2024/05/16 17:28

NSDictionary *postData =.........

NSEnumerator *enumerator = [postData keyEnumerator];

while ((key = [enumerator nextObject]) !=nil) {

            ...........

}


原创粉丝点击