我试图将NSString从一个类传递到另一个类.假设我有ViewController A和ViewController B.我想将NSString从A传递给B.
在ViewController A中,我有以下代码:
[[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationMessageEvent" object:userType];
//这里用户类型是我使用委托获得的字符串,我需要将此userType传递给ViewController B.
在ViewController B中,我有以下代码:在viewDidLoad中,我有以下代码:
[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationAction:) name:@"NotificationMessageEvent" object:nil];
//调用此NSNotificationCenter方法
我已注册以下选择器方法.
-(void) notificationAction:(NSNotification *) notification { if ([notification.object isKindOfClass:[NSString class]]) { NSString *message = [notification object]; // do stuff here with your message data NSLog(@"%@ is message",message); } else { NSLog(@"Error, object not recognised."); } }
//从不调用上面的选择器方法.
我已经阅读了其他类似的stackoverflow答案,但我还没有找到任何解决方案.
您的代码和语法显然是正确的.我猜这是物体生命周期的问题.我假设以下任何一种都是真的:
发布通知时,ViewController B实际上不作为对象存在
要么
ViewController A在ViewController B有机会注册之前发布通知.
您可以验证其中任何一种方法的一种方法是添加两个断点,一个发布通知,另一个通知监听器注册.应在发布通知之前命中监听器注册的断点.如果发生这种情况,那么验证ViewController B实际上是发布通知时存在的对象(就像它没有从导航堆栈中弹出一样).