objective-c – Xcode指向整数转换的不兼容指针从结果类型为NSInteger的函数返回void

为什么我在
Xcode中收到此警告? 最佳答案 Xcode期望函数末尾的return语句

做这样的事情会更好:

NSInteger * myInt = nil;

 //your if statement where you changing "myInt" instead of returning

返回myInt

点赞