How to reload tableview from another view controller in swift

前端 未结 6 1903
后悔当初
后悔当初 2020-11-28 22:40

When I dismiss a modal view controller I want the tableview to update, I am using the form sheet presentation style on iPad so the viewWillAppear and the

6条回答
  •  臣服心动
    2020-11-28 23:13

    Missing comma on this line, should instead be:

    NSNotificationCenter.defaultCenter().addObserver(self, selector: "loadList:", name:"load", object: nil)
    

提交回复
热议问题