在我的程序中,我使用自动引用计数设置核心基础变量。对于我的@interface我使用:
@property(nonatomic,assign)CGRect home;
在我的@implementation中,我使用:
@synthesize home;
我收到错误“属性'home'('struct CGRect')与ivar'home'('struct CGRect *)的类型不匹配。请指教,以便我可以保留我的getter和setter用于CGRect变量。
提前致谢。
答案 0 :(得分:2)
在您的界面中,您必须拥有以下内容:
@interface MyClass: NSObject {
CGRect *home;
// ^ here's your problem
}
@property (nonatomic, assign) CGRect home;
@end
从CGRect *home
删除星号。