作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在实现 Skobbler SDK (v2.5),但我在第一步中遇到了问题。
应用程序因以下错误而崩溃:[SKVectorMapView displayTrafficWithMode:]:无法识别的选择器发送到实例
这是AppDelegate的代码
SKMapsInitSettings* initSettings = [[SKMapsInitSettings alloc]init];
initSettings.mapDetailLevel = SKMapDetailLevelLight;
[[SKMapsService sharedInstance] initializeSKMapsWithAPIKey:API_KEY settings:initSettings];
这是 ViewController 的代码:
- (void)viewDidLoad {
[super viewDidLoad];
SKMapView *mapView = [[SKMapView alloc] initWithFrame:CGRectMake( 0.0f, 0.0f, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame) )];
[self.view addSubview:mapView];
}
你能告诉我出了什么问题吗?
最佳答案
确保您将“-ObjC”添加到“其他链接器标志”中。
“选择项目并选择您的目标。选择“build设置”选项卡,然后在“其他链接器标志”选项中引入 -ObjC。”来自developer.skobbler.com
关于skmaps - SKVectorMapView : unrecognized selector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32845085/
我正在实现 Skobbler SDK (v2.5),但我在第一步中遇到了问题。 应用程序因以下错误而崩溃:[SKVectorMapView displayTrafficWithMode:]:无法识别的
我是一名优秀的程序员,十分优秀!