Xcode与整数转换的不兼容指针从结果类型为NSInteger的函数返回void

时间:2012-09-23 19:46:42

标签: objective-c xcode warnings

为什么我在Xcode中收到此警告?

enter image description here

1 个答案:

答案 0 :(得分:2)

Xcode期望函数末尾的return语句

最好做这样的事情:

NSInteger * myInt = nil;

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

返回myInt