Post

Replies

Boosts

Views

Activity

Reply to UITableView with UIButton or UITextField on iOS 14.2 does not work anymore
it only works in iOS 13.6 and below in my case...... iOS 14.2 is not working :-( i am using a UIViewController, not a UITableViewController here my complete class: import UIKit class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {     @IBOutlet weak var tableView: UITableView!     override func viewDidLoad() {         super.viewDidLoad()         tableView.register(UITableViewCell.self,forCellReuseIdentifier: "TableViewCell")         tableView.dataSource = self         tableView.delegate = self     }     func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {         return 5     }     func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {         let cell = tableView.dequeueReusableCell(withIdentifier: "TableViewCell",for: indexPath)         cell.selectionStyle = UITableViewCell.SelectionStyle.none         //cell.textLabel?.text = self.tableViewData[indexPath.row]         let text = UITextField(frame: CGRect(x: 0, y: 0, width: 300, height: 40))         text.text = "asdfasfasf"         text.delegate = self;         cell.addSubview(text)         return cell     } }
Dec ’20