bool toggle发出警告,
我已经看到了toggle a Bool,我可以使用
self.calendarIsShowing = !self.calendarIsShowing;
但是我收到了这个警告,
Incompatible integer to pointer conversion assigning to 'BOOL *' (aka 'signed char *)from 'int'
它仍然有效,我只想修复警告, 感谢
答案 0 :(得分:6)
我打赌你的财产是......
@property BOOL * calendarIsShowing;
但它应该是
@property BOOL calendarIsShowing;