在IOS中,我非常适合在使用prepareforsegue传递数据和委托传递数据之间直接进行查看的视图之间传递数据。
我遇到的问题是我正在构建一个可以分割4个视图的应用程序,然后当用户点击进入第四个视图时,我弹出其余的视图以返回到第一个视图控制器并且它是查看,但我无法弄清楚如何将数据委托回第一个。
我认为问题在于在第一个视图控制器中设置委托。我无法像通常使用segue.destinationviewcontroller那样设置它,因为该视图控制器尚不存在。我应该把它放在别的地方吗?这样做的正确方法是什么?
答案 0 :(得分:4)
在这种情况下,请考虑使用NSNotificationCenter在视图控制器之间进行通信,而不是使用委派来传递数据。
在您的第一个视图控制器中,您将注册以收听通知:
- (void)viewDidLoad
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleFourthViewSubmit:)
name:@"fourthViewSubmit"
object:nil];
}
创建发送通知时要运行的方法:
- (void)handleFourthViewSubmit:(NSNotification *)notification {
NSDictionary *theData = [notification userInfo]; // theData is the data from your fourth view controller
// pop views and process theData
}
在第一个视图控制器的dealloc方法中,请务必取消注册为观察者(以避免潜在的崩溃):
-(void) dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}
然后在第四个视图控制器中,按下输入按钮时广播通知:
// note: dataDict should be an NSDictionary containing the data you want to send back to your first view controller
[[NSNotificationCenter defaultCenter] postNotificationName:@"fourthViewSubmit"
object:self
userInfo:dataDict];