[关闭]
@SanMao 2015-08-06T00:34:22.000000Z 字数 755 阅读 1412

代理,通知,KVO的区别

UI


代理的使用步骤

  1. @property (nonatomic, weak) id<XMGWineCellDelegate> delegate;
  1. xxx.delegate = yyy;
  1. if ([self.delegate respondsToSelector:@selector(wineCellDidClickPlusButton:)]) {
  2. [self.delegate wineCellDidClickPlusButton:self];
  3. }

iOS监听某些事件的方法

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注