いつもお世話になります。
tableView
のisEditing
とallowsMultipleSelectionDuringEditing
をtrue
にしてから一部セルを選択不可にしているのですが、
選択不可にしたセルのcontentView
の幅が縮小せずラベルの先頭にインデントがついたものとインデントがついていないものが混在してしまいます。
出来合いのプロパティ/メソッド等で回避する方法はありますか?
swift
1import UIKit 2 3class ViewController: UIViewController { 4 5 let array = [String](repeating: "A", count: 5) 6 7 @IBOutlet weak var containerView: UIView! 8 @IBOutlet weak var upperView: UIView! 9 @IBOutlet weak var tTableView: UITableView! 10 11 @IBOutlet weak var upperViewBottom: NSLayoutConstraint! 12 13 override func viewDidLoad() { 14 super.viewDidLoad() 15 16 tTableView.isEditing = true 17 tTableView.allowsMultipleSelectionDuringEditing = true 18 } 19 20} 21 22extension ViewController: UITableViewDataSource { 23 24 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 25 return array.count 26 } 27 28 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 29 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 30 31 cell.textLabel?.text = array[indexPath.row] 32 33 cell.selectionStyle = indexPath.row.isEvenNumber ? .default : .none 34 35 return cell 36 } 37 38 func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { 39 40 return indexPath.row.isEvenNumber 41 42 } 43} 44 45extension ViewController: UITableViewDelegate { 46 47 // willSelectRow 48 func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? { 49 return indexPath.row.isEvenNumber ? indexPath : nil 50 } 51 52 // indicateEditButton 53 func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCell.EditingStyle { 54 return UITableViewCell.EditingStyle.init(rawValue: 3)! 55 } 56 57 // spaceOfEditIco 58 func tableView(_ tableView: UITableView, shouldIndentWhileEditingRowAt indexPaht: IndexPath) -> Bool { 59 return true 60 } 61 62 func scrollViewDidScroll(_ scrollView: UIScrollView) { 63 64 if scrollView.contentOffset.y < 0 { 65 66 let v: CGFloat = min(abs(scrollView.contentOffset.y), upperView.frame.height) 67 scrollView.contentInset.top = v 68 upperViewBottom.constant = -v 69 70 } else { 71 scrollView.contentInset.top = 0 72 upperViewBottom.constant = 0 73 } 74 } 75} 76 77extension Int { 78 79 var isEvenNumber: Bool { 80 return self % 2 == 0 81 } 82} 83
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。