我是不是遗漏了什么?为什么我会得到这个错误?“预期)在CLLocationDegress之前。”
+ (NSMutableArray *)findNextTwentyFiveRemote:(CLLocationDegrees *)latitude withLong: (CLLocationDegrees *)longitude withLastIncrementNum:(int *)lastPostIdAsString;发布于 2011-03-06 14:10:19
CLLocationDegrees不是指针类型。这几乎就是一个双倍的数字。换句话说,去掉星号。
发布于 2011-03-06 14:16:39
你记得在你的源文件中使用#import <CoreLocation/CoreLocation.h>吗?
发布于 2011-03-06 14:53:44
出现此错误的原因有很多。这可能是由于您的代码中较早的一些原因,例如缺少分号。我们需要在您已经展示的代码之上看到更多的代码,以确定它是什么。
https://stackoverflow.com/questions/5209017
复制相似问题