我是我爲我的應用下載了MZFormSheetController庫。當我確認表單時,如何回到我的視圖?
我的彈出窗口有問題。當我在我的TableViewController上時,我點擊一行以打開彈出窗口,以便我可以更改名稱。彈出窗口打開,我設置了名稱,當我點擊按鈕來更正名稱時,我調用了按鈕方法,但在重新加載列表時我無法關閉彈出窗口。
- (IBAction)modifierTournoi:(id)sender {
//code to update database
//this method close the popup but don't call method viewWillAppear to reload database
//I don't know what method i can use..?
[self dismissFormSheetControllerAnimated:YES completionHandler:^(MZFormSheetController *formSheetController) {
}];
}
在此之前,我使用popViewControllerAnimated方法返回我的列表,同時充電我的列表。
- (IBAction)modifierJoueur:(id)sender {
//code to update database
[self.navigationController popViewControllerAnimated:true];
}
你能幫我嗎?
非常感謝。
提供您編寫的代碼將極大地幫助人們更好地理解您的問題。 – spassas 2014-10-20 16:38:59