私はUIButtonの背景画像を最初に設定したアプリケーションを持っており、後でそれを別のものに変更する必要があります。元のボタンを削除して新しいボタンで新しいボタンを割り当てることができますが、私がすでに割り当てたオブジェクトをより効率的に再利用したいと思っています。これは可能ですか?私はcurrentBackgroundImageプロパティが読み取り専用であることに気づいたので、私は同じようなものをしようとすると:UIButtonの背景イメージをリセットすることはできますか?
[thumbnailButton setBackgroundImage:nil forState:UIControlStateNormal];
[thumbnailButton setBackgroundImage:[UIImage imageWithCGImage:[[photos objectAtIndex: currentPhotoIndex] thumbnail]] forState:UIControlStateNormal];
か、単に:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCellContentView setBackgroundImage:forState:]: unrecognized selector sent to instance 0x16c570'
それは達成することは可能です:
[thumbnailButton setBackgroundImage:[UIImage imageWithCGImage:[[photos objectAtIndex: currentPhotoIndex] thumbnail]] forState:UIControlStateNormal];
私は次の取得しますUIButtonを使用するか、元のボタンを削除して新しいボタンを作成するだけですか?
setBackgroundImage:forState:が機能していないと言っていますか? – picciano
@picciano - はい、私はエラーメッセージで更新しました。 –
編集内容と元の質問は何ですか – Garoal