我有一个名为Product的 UIView ,其中包含一个名为Postcode的子 UIView 。
在邮政编码中,UIView
我有一个简单的表格(一个UITextField
和一个UIButton
)。
单击时,将在邮政编码视图中运行UIButton
一个方法(称为)...按预期工作。-storeData
现在在里面storeData
我想调用superview Product中的一个方法。
这是我尝试做的,但我收到警告:
if ([[self superview] class] == [ProductView class]) {
ProductView *p = [self superview];
[p handlePostChange];
}
// 从此行获取此警告ProductView *p = [self superview];
PostView.m:124:28:使用“UIView *”类型的表达式初始化“ProductView *__strong”的不兼容指针类型