クラスを作成し、すべての変数を初期化するメソッドを作成しました。
.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_; ***
}
*を含む行で「割り当てに互換性のない型」というエラーが表示されますが、理解できません。
皆さん、ありがとうございました