我收到此错误:
在CLLocation之前应为“)”
我的代码:
MyAppDelegate.h
@protocol AskerConnectionDelegate
-(void) postNewQuestionForUserID: (NSString*)uID Text: (NSString*)text location: (CLLocation*)loc;
@end
最佳答案
您应该导入必要的头文件。
#import <MapKit/MapKit.h>
或者只是在@protocol声明之前添加@class指令,
@class CLLocation;
添加@class指令只是让编译器知道特定的类存在,而不必导入头文件。
关于ios - 错误:在CLLocation之前应为“)”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7738264/