嗨,我有一个奇怪的问题,
在我的 MainViewController 类中,我会在按下按钮时发布通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"step" object:nil];
在课堂上我自己有一个观察者
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(step) name:@"step" object:nil];
运行“步骤”方法
- (void)step {
NSLog(@"works");
}
在另一个名为 Slide1ViewController 的类中我也有一个观察者
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
NSLog(@"works 2");
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(step) name:@"step" object:nil];
}
return self;
}
并且dealloc方法将其删除
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"step" object:nil];
}
在MainViewController中调用该方法,但从不在Slide1ViewController中调用。
Slide1ViewController的初始化方式如下:
Slide1ViewController*test = [[Slide1ViewController alloc] initWithNibName:@"Slide1ViewController" bundle:nil];
test.view.frame = CGRectMake(1024*0, 0, 1024, 768);
[contentScrollView addSubview:test.view];
答案 0 :(得分:0)
非常感谢@Phillip Mills你是对的我需要将它声明为MainViewController的@property现在它可以工作!非常感谢这个问题让我发疯。