且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

NSNotificationCenter调用两次

更新时间:2022-03-03 21:42:18

根据在此处回答,下方,并且现在可以正常工作.

As per answer here, I make changes as below and its working fine now.

-(void) viewWillAppear:(BOOL)animated {
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(adjustShowMenu) name:@"ShowMySideMenuNotification" object:nil];
}

-(void) viewWillDisappear:(BOOL)animated {
    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"ShowMySideMenuNotification" object:nil];
}