美文网首页
iOS一次性通知

iOS一次性通知

作者: 面糊 | 来源:发表于2017-12-19 11:22 被阅读22次
    __weak NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
    id __block obj = [[NSNotificationCenter defaultCenter] addObserverForName:@"2" object:self queue:[[NSOperationQueue alloc] init] usingBlock:^(NSNotification * _Nonnull note) {
        NSLog(@"%@\n%@", note, [NSThread currentThread]);
        [center removeObserver:obj];
    }];

    相关文章

      网友评论

          本文标题:iOS一次性通知

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