在我的简单类的实现中,此行上出现错误“无效的接收器类型'NSInteger'”:

        self.price = p; // this line throws error


我应该将价格指定为copy吗?更多细节:

头文件:

@interface SafeItem : NSObject {
    NSString *name;
    NSInteger price;
    NSString *category;
    NSInteger itemid;
    BOOL hasImage;
}

@property (nonatomic,copy) NSString *name;
@property (nonatomic) NSInteger price;
@property (nonatomic,copy) NSString *category;
@property NSInteger itemid;
@property BOOL hasImage;

- (id)initWithName:(NSString*) n price:(NSInteger) p category:(NSString*) c;

@end


实施:

@implementation SafeItem

@synthesize name, price, category, itemid, hasImage;

- (id)initWithName:(NSString*) n price:(NSInteger) p category:(NSString*) c {
    if(self=[super init]){
        self.itemid = [SafeItem getNextId];
        self.name = [n copy];
        self.price = p; // this line throws error
        self.category = [c copy];
    }
    return self;
}

最佳答案

不,默认的assign是您想要的。

坦白说,这个错误对我来说没有意义-代码中是否还有其他地方,例如setPrice的显式实现?同时,抓住稻草,尝试在此初始化程序中省略通过self的访问。

(实际上,在所有这四个分配中。您使用copy与直接访问ivars是一致的。如果您使用的是copy setter,则无需先行设置copy参数,然后执行就像您在此处所做的那样-没有相应的release-会给您造成泄漏。请坚持一种方式。

关于iphone - 设置NSInteger属性时无效的接收器类型'NSInteger',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3111700/

10-12 15:42