我构建了一个类并创建了一个初始化所有变量的方法。
在.h
-(void) initWithX:(float *)x_ andY:(float *)y_ andWidth:(float *)width_;
和.m
-(void) initWithX:(float *)x_ andY:(float *)y_ andWidth:(float *)width_{
[super init];
x = x_; ***
y = y_; ***
width = width_; ***
}
带*的行给我错误“分配中的类型不兼容”,但我不明白:我给出了 .h 中所述的 3 个浮点数!!!
谢谢你们