ボタン名を必要とするメソッドで使用するbuttons列挙型を取得する必要があります。
enum {
Arle = 1,
Bain,
...
};
arle = [UIButton buttonWithType:UIButtonTypeCustom];
arle.tag = Arle;
arle.tagは文字列ではなくdoubleであるため、ポイントできません。結果として@ "Arle"を取得するために、ポイントできるものはありますか?
ボタン名を必要とするメソッドで使用するbuttons列挙型を取得する必要があります。
enum {
Arle = 1,
Bain,
...
};
arle = [UIButton buttonWithType:UIButtonTypeCustom];
arle.tag = Arle;
arle.tagは文字列ではなくdoubleであるため、ポイントできません。結果として@ "Arle"を取得するために、ポイントできるものはありますか?