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 はセル内の私のテキストです。だから私はこのコードで tableViewCell から TextLabel を見つけるために何をしますか。tableViewCell テキストまたは詳細テキストのマーキーのコードを知っているかもしれません。ありがとう