我想通过 , 等获取属性名称self.label1
。self.label2
你self.label3
知道如何将 NSString 转换为 JS 或 Ruby 等方法吗?
我的标题是
@property(nonatomic,strong)CCLabelTTF *label1;
@property(nonatomic,strong)CCLabelTTf *label2;...
实现
for (int i = 0; i < 10; ){
NSString *str = [NSString stringWithFormat:@"self.label%i",i];
// convert str to property
converted_str = [CCLabelTTF labelWithString:%@"hello below style is not good...
我想避免这种风格...
for(int i = 0 ;i < 10;){
if (i == 0){
self.label1 = ...
}else if(i == 1){
self.label = ...
}
你有什么主意吗?提前致谢。