字幕、画像、背景、色、テキストスタイルなど、100万のUITableを作成しました。突然、私はこのテーブル、特に細胞の画像を要求する行でクラッシュしました。コードは次のとおりです。
// Configure the cell:
cell.textLabel.font = [UIFont fontWithName:@"Franklin Gothic Book" size:18];
cell.textLabel.text = [leadershipMenu objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [leadershipSubtitlesMenu objectAtIndex:indexPath.row];
// And here's the statement that causes the crash:
cell.imageView.image = [leadershipPhotosMenu objectAtIndex:indexPath.row];
今、私が得るエラーはこれです:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '-[__NSCFConstantString _isResizable]: unrecognized selector sent to instance 0xcacbc'
クラッシュの原因となったステートメントが
cell.imageView.image = ...
コメントするとすぐにすべてが正常に機能します。
私は私の人生で見たことがありません
-[__NSCFConstantString _isResizable]:
エラー。私はそれをグーグルで検索しましたが、ほとんど見つかりませんでした。
非常に独特です。
誰か手がかりがありますか?