注册 登录
编程论坛 汇编论坛

不可变的字典去深复制为什么变成可变的

zzt244 发布于 2016-04-12 01:51, 4971 次点击
        NSDictionary *d=[NSDictionary dictionaryWithObject:@"aa" forKey:@"AA"];
        
        NSDictionary *d1=[d mutableCopy];
        [d1 setValue:@"1" forKey:@"2"];
        NSLog(@"%p",d);
        NSLog(@"%p",d1);
0 回复
1