代理设计模式-创新互联
/**
*代理设计模式的思想: (只是用代理设计模式)
对于当前视图对象,只负责接收触摸事件,当触摸事件发生之后,通知代理做响应处理,代理如何来处理,视图不关心
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
//如果代理实现了对应的协议方法,就去调用, 如果没有实现就不要调用了.
//判断代理是否实现的对应的方法(判断一个对象是否实现了某个方法)
if ([self.delegate respondsToSelector:@selector(touchViewTouchesBegan:)]) {
[self.delegate touchViewTouchesBegan:self];
}
//触摸开始时,通知代理做相应操作
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
//触摸移动时(做移动操作),通知代理做相应操作
if ([self respondsToSelector:@selector(touchViewTouchesMoved:)]) {
[self.delegate touchViewTouchesMoved:self];
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
//触摸结束时,通知代理做相应操作
if ([self respondsToSelector:@selector(touchViewTouchesEnded:)]) {
[self.delegate touchViewTouchesEnded:self];
}
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
//触摸中断时,通知代理做相应操作
if ([self respondsToSelector:@selector(touchViewTouchesCancelled:)]) {
[self.delegate touchViewTouchesCancelled:self];
}
}
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:代理设计模式-创新互联
网页URL:http://ybzwz.com/article/dcjdhd.html