我是在宣告一个UIView类我想实现另一个UIView类的协议方法的协议。 但该协议的方法不叫我能做些什么。 任何一个可以帮助我
Answer 1:
你叫的UploadView委托函数? 此外,由于它是可选的功能,你必须检查是否代表响应函数之前调用它。
- (void)yourFunction {
...
if ([self.delegate respondsToSelector:@selector(takeAnotherPhoto:)]) {
[delegate takeAnotherPhoto:self];
}
...
}
文章来源: How to call the protocol between two independent uiview in Iphone?