代码之家  ›  专栏  ›  技术社区  ›  William Chiang

删除子视图后无法选择Tableview

  •  0
  • William Chiang  · 技术社区  · 7 年前

    我实现了一个子视图,当表中没有项目时,它显示在UITableViewController的表视图上。添加项目后,子视图将从superview中删除以显示tableview,但单元格已变得不可选择。此外,点击编辑按钮后作为导航项目显示的左侧删除圆圈按钮对点击没有响应。

    有趣的是,左击可以删除作品。然后向左滑动以显示删除框,然后按下该框即可。真是奇怪的行为。这就是我所拥有的:

    override func viewDidLoad() {
        super.viewDidLoad()
    
        // Check if there are any items in the fetchedResultsController. If empty, present noDataScreen over the tableView
        if fetchedResultsController.fetchedObjects!.count == 0 {
            let noDataScreen = EmptyTableView.init(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: view.frame.height))
            view.addSubview(noDataScreen)
    }
    
    // Item Search View Controller Delegate
    func itemSearchViewController(_ controller: ItemSearchViewController, didFinishAdding item: Item) {
        if fetchedResultsController.fetchedObjects!.count != 0 {
            if let viewWithTag = self.view.viewWithTag(1000) {
                viewWithTag.removeFromSuperview()
            }
        }
    }
    
    // I was hoping the code below would reset the state of the tableview after the subview, the noDataScreen, is removed to allow for tableview row selection
    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear(animated)
            tableView.dataSource = self
            tableView.delegate = self
            tableView.reloadData()
    }
    

    我尝试了以下代码:

    // Revised viewWillAppear
    override func viewWillAppear(_ animated: Bool) {
            super.viewWillAppear(animated)
            self.becomeFirstResponder()
    
            // I moved the if and if-let statements here since this will be invoked as the popover Item Search View Controller is dismissed.
            if fetchedResultsController.fetchedObjects!.count != 0 {
    
                if let viewWithTag = self.view.viewWithTag(1000) {
                    viewWithTag.resignFirstResponder()
                    viewWithTag.removeFromSuperview()
                }
                self.view.isUserInteractionEnabled = true // enable interaction with the tableview to return everything to normal, hopefully
                self.navigationItem.leftBarButtonItem?.isEnabled = true
            }
        }
    
    // Added    
    override func viewDidAppear(_ animated: Bool) {
            super.viewDidAppear(animated)
            self.view.becomeFirstResponder()
    }
    

    还是没有用。在superview上添加子视图会影响tableView的触摸功能,而tableView是UITableViewController的一部分。任何想法都将不胜感激。

    1 回复  |  直到 7 年前
        1
  •  0
  •   William Chiang    7 年前

    我修好了!在第4行初始化NodeaScreen UIView后,我只需添加这行代码:

    noDataScreen.isUserInteractionEnabled = false
    

    从superview中删除NodeaScreen后,NodeaScreen后面的视图会响应用户的触摸。