通知

作者: ForstDragon | 来源:发表于2019-07-04 11:05 被阅读0次
    //创建通知
    [[NSNotificationCenter defaultCenter] postNotificationName:City_Change_Notification object:nil];
    //接收通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(goodsMortgageHttpRequest) name:City_Change_Notification object:nil];
    //移除通知
    #pragma mark ==================   Dealloc   ==================
    - (void)dealloc {
        [[NSNotificationCenter defaultCenter] removeObserver:self];
        NSLog(@"===  GoodsMortgageViewController dealloc  ===");
    }
    

    相关文章

      网友评论

          本文标题:通知

          本文链接:https://www.haomeiwen.com/subject/pyxeoftx.html