1
我有2個視圖控制器。 FirstViewController
和SecondViewController
。二是通過presentViewController...
警告:嘗試從視圖控制器(UINavigationController)退出,而演示或解僱正在進行中
呈現兩個正在聽一個通知:
FirstViewController.m
- (void)facebookUpdated:(NSNotification *)notification {
if (![[FacebookHelper sharedInstance] isLoggedIn]) {
[self.addReminderTableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(1, 2)] withRowAnimation:UITableViewRowAnimationFade];
}
}
SecondViewController.m
- (void)facebookUpdated:(NSNotification *)notification {
if (![[FacebookHelper sharedInstance] isLoggedIn]) {
// The user decided not to log in
[self dismissViewControllerAnimated:YES completion:^{
}];
}
}
的SecondViewController
被駁回,表中FirstViewController
被重新加載。但我發現了這個警告,我不喜歡
警告:嘗試從視圖控制器 解僱而呈現或者解聘正在進行 !
而我真的不知道爲什麼我得到它。我相信沒有其他解僱正在進行中。我不確定進行中的演示是什麼意思?