通知中心

来源:互联网 发布:电器售后维修软件 编辑:程序博客网 时间:2024/04/27 18:57

有些东西总会忘 虽然并不难

//通知中心

    [[NSNotificationCenterdefaultCenter]postNotificationName:@"模态推出刷新控件"object:selfuserInfo:nil];




你想要接收消息并想搞事情的页面 如下

//成为消息接收者

    [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(getUserProfileSuccess:)name:@"模态推出刷新控件"object:nil];


//收到通知后的方法

- (void)getUserProfileSuccess:(NSNotificationCenter *)noti {

    

    

    [selfdismissViewControllerAnimated:YEScompletion:^{

        

    }];

    

}


0 0