首页 文章

“Swift Core Data”和UISearchController

提问于
浏览
0

我有 tableViewNSFetchedResultsController !我完全完成了 NSFetchedResultsController 的委托方法并且完美无缺!我的问题在于提交 UIAlertController . UIAlertControllertableView 上运行良好,但在 UISearchController 内部无效 . 我试图删除 UISearchController 内的对象 . 当我按下删除按钮Xcode给我这样的错误:

2016-03-05 07:37:42.456 UISearchController8289:180216 Warning: Attempt to present <UIAlertController: 0x7ff7a046f740>  on <UISearchController.MainTableViewController: 0x7ff7a2919240> which is already presenting (null)

这是我的 commitEditingStyle 方法的代码和 UIAlertControllerUIAlertActionhandler

`//覆盖以支持编辑表格视图 . override func tableView(tableView:UITableView,commitEditingStyle editingStyle:UITableViewCellEditingStyle,forRowAtIndexPath indexPath:NSIndexPath){if editingStyle == .Delete {

let itemToDelete:Manager = self.fetchedResultsController.objectAtIndexPath(indexPath) as! Manager
        prepareForDelete(itemToDelete)

        // Delete the row from the data source
        //tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
    } else if editingStyle == .Insert {
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    }    
}

// Delete Action
var itemsToDelete:Manager!

// Delete function

private func prepareForDelete(managedObject:Manager){

//
    self.itemsToDelete = managedObject

    // Alert
    let alert:UIAlertController = UIAlertController(title: "Warning!", message: "Do you want to delete this note?", preferredStyle: UIAlertControllerStyle.Alert)

    // Actions
    let deleteAction:UIAlertAction = UIAlertAction(title: "Delete", style: UIAlertActionStyle.Destructive, handler: deleteHandler)

    // Actions
    let cancelAction:UIAlertAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

    // Add actions to the alert
    alert.addAction(deleteAction)
    alert.addAction(cancelAction)

    // Present alert
    self.presentViewController(alert, animated: true, completion: nil)
}

func deleteHandler(alert:UIAlertAction) -> Void {

    // Delete from the moc
    if let delete = self.itemsToDelete {
        self.managedObjectContext.deleteObject(delete)
        do {
            // Save changes
            try self.managedObjectContext.save()
        } catch {

        }
        self.itemsToDelete = nil
    }
}`

如何禁用 UIAlertController ?我不需要 UISearchController 内的警报 . 因为这个功能在 UISearchController 里面不起作用

感谢您的关注!

1 回答

  • 1

    您可以检查您的搜索控制器是否处于活动状态(我假设您在视图控制器中有对您的搜索控制器的引用) .

    将其添加到 prepareForDelete 的开头:

    guard !searchController.active else { return }
    

    该代码检查搜索控制器是否处于活动状态,但如果是,则不执行任何代码 .

相关问题