我需要获取一个按钮枚举以在需要按钮名称的方法中使用。
enum {
Arle = 1,
Bain,
...
};
arle = [UIButton buttonWithType:UIButtonTypeCustom];
arle.tag = Arle;
我不能指向 arle.tag 因为它是双精度而不是字符串,有什么我可以指向的,以获得 @"Arle" 的结果吗?
我需要获取一个按钮枚举以在需要按钮名称的方法中使用。
enum {
Arle = 1,
Bain,
...
};
arle = [UIButton buttonWithType:UIButtonTypeCustom];
arle.tag = Arle;
我不能指向 arle.tag 因为它是双精度而不是字符串,有什么我可以指向的,以获得 @"Arle" 的结果吗?