1
テーブルの各セルにUIButtonしかない場合に、選択した状態の色をNormalに設定して、選択した色が正常に実行されると、不安定になります効果。まだ識別することができませんでした。どんな助けもありがたい。前もって感謝します。UITableViewCellのUIButtonがreloadRowsAtIndexPathにジャンプする
いくつかのコード - 行を再ロードする -
`tableView.beginUpdates()
tableView.reloadRowsAtIndexPaths(Array(selectedIndexPaths), withRowAnimation: .None)
tableView.endUpdates()`
セルクラスにtitlecolorとtitleimageを設定するには -
override func awakeFromNib() {
super.awakeFromNib()
selectionButton.setTitleColor(UIColor(named: .SomeColor), forState: .Normal)
selectionButton.setTitleColor(UIColor(named: .SomeColor), forState: .Selected)
selectionButton.setImage(someimage, forState: .Normal)
selectionButton.setImage(someimage, forState: .Selected
}
実際のデバイスには? –
いくつかのコードは役に立ちます – JohnnyAW
はい、私は本当のデバイスです – Avi