我正在从 动态NSMutableArray
创建标签。在创建标签时,我为每个标签设置了标签。我有一个NSMutableArray
名为wordArray
. 现在,我想检查我的字符串在 wordArray 中是否可用,我可以使用以下命令进行检查:
[wordArray containsObject:wordStr];
动态创建标签:
UILabel *wordLabl;
int tagValue3 = 1;
for (int iloop = 0; iloop < [wordArray count]; iloop++)
{
wordLabl = [self addwordLabelRect:CGRectMake(80 * iloop + 20, 420 , 100, 20)andTag:tagValue3];//30 + 35 30 * iloop+
[self.view addSubview:wordLabl];
tagValue3 += 1;
}
-(UILabel *)addwordLabelRect:(CGRect)rect andTag:(int)integerValue
{
wordLabel = [[UILabel alloc] init];
wordLabel.frame = rect;
wordLabel.userInteractionEnabled = YES;
wordLabel.tag = integerValue;
wordLabel.backgroundColor = [UIColor clearColor];
wordLabel.font = [UIFont systemFontOfSize:15];
wordLabel.text = [NSString stringWithFormat:@"%@",[wordArray objectAtIndex:integerValue - 1]];
wordLabel.textAlignment = NSTextAlignmentCenter;
wordLabel.textColor = [UIColor whiteColor];
return wordLabel;
}
使用上面的代码我正在创建标签和标签。但是,如果wordArray
包含我想要更改该标签的字符串。我textColor
认为这可以使用 Tag 来完成,但我怎样才能获得标签的标签值。