我有很多标签,如果我可以在标签名称的位置使用字符串来访问它们的属性(如.center),那将会很方便。这将大大减少键入的行数。我需要多次更改所有标签的相同属性。如果我有一个循环说的话:
NSString *TheLabelName = @"MyLabel# "
for(int TheNumber = 1; TheNumber < Something; TheNumber++){
TheNumberString = [NSString stringWithFormat:@" %i",TheNumber] ;
TheLabelName = [TheLabelName stringByReplacingOccurrencesOfString:@" " withString: TheNumberString] ;
TheLabelName.center = CGPointMake...
}
我在Google或Stack上找不到这样的内容。有没有办法在标签名称的位置使用字符串?