2

我有一个带有 NSMutableDictionary 成员变量的简单类。但是,当我调用 setObject:forKey 时,我得到一个错误('mutating method sent to immutable object')。从调试器可以看出问题的根源——我的 NSMutableDictionary 实际上是 NSDictionary 类型。

我一定错过了一些非常简单但似乎无法修复的东西。以下是相关代码:

// Model.h
@interface Model : NSObject {
    NSMutableDictionary *piers;
}
@property (nonatomic,retain) NSMutableDictionary *piers;
@end


// Model.m
@implementation Model
@synthesize piers;

-(id) init {
 if (self = [super init]) {
     self.piers = [[NSMutableDictionary alloc] initWithCapacity:2];
        [self createModel];
    }
    return self;
}

-(void) createModel {
 [piers setObject:@"happy" forKey:@"foobar"];  
}
@end

如果我在代码中的任何位置放置断点并调查 self.piers,它的类型为 NSDictionary。我错过了什么,所以它被视为 NSMutableDictionary ?谢谢!

4

2 回答 2

1

您的代码无需任何修改即可为我工作。我使用以下代码制作了一个基于 Foundation 的命令行工具(Mac OS X):

#import <Foundation/Foundation.h>

// Model.h
@interface Model : NSObject {
    NSMutableDictionary *piers;
}
@property (nonatomic,retain) NSMutableDictionary *piers;

-(void) createModel;

@end


// Model.m
@implementation Model
@synthesize piers;

-(id) init {
    if (self = [super init]) {
        self.piers = [[NSMutableDictionary alloc] initWithCapacity:2];
        [self createModel];
    }
    return self;
}

-(void) createModel {
    [piers setObject:@"happy" forKey:@"foobar"];  
}
@end

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    // insert code here...
    Model *model = [[Model alloc] init];

    NSLog(@"Model: %@", [model.piers objectForKey:@"foobar"]);

    [pool drain];
    return 0;
}

它给了我预期的输出:

2010-04-06 12:10:19.510 型号[3967:a0f] 型号:happy

正如 KennyTM 所说,您对 self 的使用有点错误。在你的init,一般模式是

NSMutableDictionary *aPiers = [[NSMutableDictionary alloc] initWithCapacity:2];
self.piers = aPiers;
[aPiers release];

稍后在代码中,您应该使用self.piers.

尝试做一个像我这样的项目,看看问题是否仍然存在。您可能会发现问题出在其他地方。

于 2010-04-06T11:19:14.677 回答
0

尝试删除self..

 piers = [[NSMutableDictionary alloc] initWithCapacity:2];

在 ObjC 中,符号

obj.prop = sth;

相当于

[obj setProp:sth];

它具有完全不同的语义

obj->prop = sth;

尽管极不可能,但您的可变字典可能在此-setPiers:过程中变得不可变。只需对它说不self.anything(直到您了解财产的运作方式)。

于 2010-04-06T07:45:43.187 回答