从编辑表单返回时更新UITableView,刷新整个表数据源还是已编辑的行?

时间:2016-01-06 20:33:23

标签: ios swift uitableview swift2

我的UITableView中填充了viewDidLoad()中JSON数据源的数据。我将这个JSON数据存储在我的视图控制器代码顶部的字典中:

class InventoryListViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

    @IBOutlet var inventoryListTableView: UITableView!
    let textCellIdentifier = "textCell";
    var warehouseItems: [Inventory] = [];  //array for my items

    override func viewDidLoad() {
        super.viewDidLoad()

        inventoryListTableView.dataSource = self;
        inventoryListTableView.delegate = self;

        loadTableViewWithJSON();  //this loads my data into the warehouseItems dictionary created above

    }
...
}

这是我的loadTableViewWithJSON()

func loadTableViewWithJSON() {
        let urlString = "http://url.php";
        let session = NSURLSession.sharedSession();
        let url = NSURL(string: urlString)!;

        session.dataTaskWithURL(url) { (data: NSData?, response:NSURLResponse?, error: NSError?) -> Void in
            if let responseData = data {
                do {
                    let json = try NSJSONSerialization.JSONObjectWithData(responseData, options: NSJSONReadingOptions.AllowFragments) as! Dictionary<String, AnyObject>;

                    //                        print(json);

                    if let inventoryDictionary = json["inventory"] as? [Dictionary<String, AnyObject>] {
                        //                        print(inventoryDictionary);

                        for anItem in inventoryDictionary {

                            //                            print(anItem["quantityOnHand"] as? Int);  //works

                            if let id = anItem["id"] as? Int, let item = anItem["item"] as? String, let description = anItem["description"] as? String, let quantityOnHand = anItem["quantityOnHand"] as? Int, let supplierId = anItem["supplier_id"] as? Int, let supplierName = anItem["supplierName"] as? String {

                                let item = Inventory(id: id, item: item, description: description, quantityOnHand: quantityOnHand, supplierId: supplierId, supplierName: supplierName);
                                //                                print(item);

                                self.warehouseItems.append(item);
                            }
                        }
                        //                        print(self.warehouseItems[0].description); //works
                        dispatch_async(dispatch_get_main_queue(), {
                            self.inventoryListTableView.reloadData();
                        })
                    }
                } catch {
                    print("Could not serialize");
                }
            }

            }.resume()
        }

点击其中一个项目会进入另一个视图,以便编辑已点按的项目。当字段被更改并且项目被编辑时,会有一个大的绿色检查调用一个rest API并更新我的数据库中的数据(我的UITableView来自)。现在,当我单击NavigationController中的Back按钮时,它会返回到我的UITableView的上一个屏幕,但值不会更新。我尝试在tableView.reloadData()中运行viewWillAppear(),但没有任何效果。我也试过调用我的函数来抓取来自JSON的数据,但当然只是将更新的数据添加到我的tableView的末尾,我有一个旧的数据副本,还有一个新的底层。

我的问题是,我应该清除我的UITableView并运行我的功能再次抓取数据吗?或者我应该用新数据更新单行?我认为更新单行会更好,以减少我的restful API的开销。或者,当我从编辑视图控制器返回并重新加载所有数据时,它会更好吗?

我试过这个,但它不起作用:

    override func viewWillAppear(animated: Bool) {
        super.viewWillAppear(animated);
        // loadTableViewWithJSON(); // this duplicates the data in the tableview
        inventoryListTableView.reloadData();
    }

我的cellForRowAtIndexPath

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier(textCellIdentifier, forIndexPath: indexPath) as UITableViewCell;
        let row = indexPath.row;
        cell.textLabel!.text = "\(warehouseItems[row].item) -->  \(warehouseItems[row].quantityOnHand) on hand"

        cell.detailTextLabel!.text = warehouseItems[row].description;

        return cell;
    }

1 个答案:

答案 0 :(得分:1)

当您致电loadTableViewWithJSON()时,您正在呼叫self.warehouseItems.append(item),它只是附加到现有数组。这就是您在tableView中看到重复数据的原因。

warehouseItems = []添加到session.dataTaskWithURL(url)响应块的顶部。这将清除阵列,以便您可以使用更新的数据从头开始重建它。

func loadTableViewWithJSON() {
    let urlString = "http://url.php";
    let session = NSURLSession.sharedSession();
    let url = NSURL(string: urlString)!;

    session.dataTaskWithURL(url) { (data: NSData?, response:NSURLResponse?, error: NSError?) -> Void in
        if let responseData = data {
            warehouseItems = []

完成这些更改后,以下内容适合您。

override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)
    loadTableViewWithJSON()
    inventoryListTableView.reloadData()
}

最后注意,Swift中不需要分号,我们是免费的!