我想在我的 tableViewCell 中制作字幕文本。所以我找到了一些代码:
- (void)fireTimer
{
NSMutableString *mutableText = [NSMutableString stringWithString: textLabel.text];
//Takes the first character and saves it into a string
NSString *firstCharText = [mutableText substringWithRange: NSMakeRange(0, 1)];
//Removes the first character
[mutableText deleteCharactersInRange: NSMakeRange(0, 1)];
//Adds the first character string to the initial string
[mutableText appendString: firstCharText];
textLabel.text = mutableText;
}
但是当我将此代码粘贴到我的项目时出现错误,找不到 textLabel。但是 textLabel 是我在 Cell 中的文本。所以我在这段代码中从 tableViewCell 中找到 TextLabel 做什么。也许您知道 tableViewCell 文本或详细信息文本中的任何选取框代码。谢谢