通知(NSNotificationCenter)

// 监听加载更多的通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loadMoreDeals) name:@"loadMore" object:nil];

// 发出通知
    [[NSNotificationCenter defaultCenter] postNotificationName:@"loadMore" object:nil];
原文地址:https://www.cnblogs.com/jingdizhiwa/p/5614587.html