刚从Xcode 7升级到8,现在我的头文件中的属性出现以下错误:
getter attribute on property does not match the property 'beingDismissed' inherited from UIViewController
此版本的Xcode会导致此错误的变化,以及如何修复?
答案 0 :(得分:0)
这是因为UIViewController没有public Patient(Integer idpatient,String password ){
this.idpatient=idpatient;
this.password =password ;
}
属性。它只是一个方法
beingDismissed
所以你可以像
- (BOOL)isBeingDismissed NS_AVAILABLE_IOS(5_0);
此方法的说明
返回一个布尔值,指示视图控制器是否为 在被其祖先一个人解雇的过程中。