Objective C:释放int / float属性

时间:2011-03-09 23:13:43

标签: objective-c memory-management properties floating-point int

我在理解某些事情时遇到了一些麻烦。我在我的应用程序中获得了许多功能:

@property (nonatomic, retain) AVAudioPlayer *audioPlayer;
@property (readwrite) NSInteger buttonCount;
@property (nonatomic, retain) NSString *soundSelected;
@property (readwrite) float fadeDecrease;
@property (readwrite) float fadeDelay;

这些显然都是在我的.m文件中合成的。 但是,当audioPlayer和soundSelected在dealloc中正常释放时,int buttonCount会发出以下警告: “无效的接收器类型'NSInteger'” 并且浮动实际上使编译器哭泣: “无法转换为指针类型”

这是否与他们不属于对象类型和/或未保留的事实有关? 他们没有被释放可以吗?

感谢。

2 个答案:

答案 0 :(得分:14)

NSIntegerfloat一样,不是Objective-C类型,也不遵循通常的保留/发布模型。他们只是原始人。为属性分配值就足够了。

@property (readwrite, assign) NSInteger buttonCount;

应该就是您所需要的一切。

然而,

NSNumber遵循通常的保留/释放周期,因此相应地添加属性。

答案 1 :(得分:4)

  

这是否与此有关   事实上,他们不是对象类型   和/或不保留?他们没有被释放可以吗?

是。您只能释放具有保留计数的对象。不需要保留/释放int,float和NSInteger等原始数据类型,因为它们不是指向内存其他部分的指针。

如果您想了解有关内存管理的更多信息,请尝试查看此文档页面:

http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html%23//apple_ref/doc/uid/10000011-SW1