我正在使用下一个代码来定义我的 c 数组(除了警告之外效果很好):
在 .h 文件上:
@interface memory : NSObject
{
int places[60];
int lastRecordSound;
}
@property int *places;
然后在我的.m
我没有同步它(它工作)但如果我尝试同步它:
@synthesize places;
我得到错误:
type of preperty "places does not match type of ivar places (int[60] )
如果没有,我会收到警告:
auto synthesized property places will be use synthesized instance variable _places...
那么,定义这个 c 数组的最佳方法是什么?(是的,我需要 c ..)