在executeFetchRequest之后TableView不重新加载

时间:2015-10-12 20:39:11

标签: ios swift uitableview ios9 reloaddata

当应用程序启动时,我向执行ViewController函数的refreshCategories发送通知,问题是tableView仅在我滚动或长时间(20秒或更长时间)后重新加载。

Heres是我的代码:

class PopularCategoriesTableViewController: UITableViewController {

    var categoryList:[Category]!

    override func viewDidLoad() {
        super.viewDidLoad()

        NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("refreshCategories"),
            name: Constants.NotificationKeys.shouldReloadCategories, object: nil)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    // MARK: - 
    func refreshCategories() {
        categoryList = DataModelUtil.sharedInstance.getRecordsFromEntity(Category.classString()) as! [Category]
        self.tableView.reloadData()

    }

    // MARK: - Table view data source
    override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 0.01
    }

    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if categoryList == nil {
            return 0
        }

        return categoryList.count
    }

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let item = categoryList[indexPath.row]

        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)
        cell.textLabel?.text = item.name

        return cell
    }

}

这是执行fetch的方法:

func getRecordsFromEntity(entity:String) -> [NSManagedObject]! {
    let fetchRequest = NSFetchRequest(entityName: entity)
    do {
        return try appDelegate.managedObjectContext.executeFetchRequest(fetchRequest) as! [NSManagedObject]
    } catch let error as NSError {
        print("Could not execute FetchRequest \(error), \(error.userInfo)")
    }
    return nil
}

注意:我发现使用dispatch_async时效果很好。

dispatch_async(dispatch_get_main_queue(),{ ()->() in
                self.tableView.reloadData()
            })

但我在iOS 8中并不需要使用objective-c,而且每次我想重新加载数据时都不认为使用dispatch是正确的。

1 个答案:

答案 0 :(得分:0)

任何UI操作都必须在主队列上完成。如果你不遵守这个规则,你会得到奇怪的崩溃。我还建议您使用NSFetchedResultsController,因为您使用的是tableView。通过遵守核心数据线程规则将数据保存在,您的表格将自动更新。您可以通过重置NSFetchedResultsController并再次初始化来手动刷新您的表。