快速集成
1. SDK集成
提供两种集成方式供iOS开发者选择:
- 通过CocoaPods集成
- 手动集成
1.1 通过CocoaPods集成
在工程的 Podfile
里面添加以下代码:
pod 'TencentNavKit', '6.7.6'
pod 'libwebp'
1.2 手动集成
-
将如下Framework以及资源Bundle加入Xcode工程中,
-
在工程->Targets->Build Phases->Link Binary With Libraries中添加如下系统库
- CoreMotion.framework
- libc++.tbd
- libsqlite3.0.tbd
-
在Targets->Building Settings -> Other Linker Flags中添加 -ObjC,
-
导航SDK依赖libwebp,请引入libwebp
2. 工程配置
- 添加相关系统权限。在工程->Targets->Info中添加如下定位权限,
- Privacy - Location Always Usage Description
- Privacy - Location Always and When In Use Usage Description
- Privacy - Location When In Use Usage Description
- 如果需要后台定位,需在IOS 9.0及以后设allowBackgroundLocationUpdates为YES,此时必须保证TARGETS->Capabilities->Background Modes->Location updates处于选中状态
3. 初始化
在工程的“AppDelegate.m”中引入“#import<QMapKit/QMapKit.h>”和“#import <TencentNavKit/TencentNavKit.h>”,并配置开发者Key,此步骤为必须。
#import <QMapKit/QMapKit.h>”
#import<TencentNavKit/TencentNavKit.h>
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// 地图SDK隐私合规接口,同意隐私合规
[[QMapServices sharedServices] setPrivacyAgreement:YES];
// 导航SDK隐私合规接口,同意隐私合规
[[TNKNavServices sharedServices] setPrivacyAgreement:YES];
//地图SDK的key配置
[QMapServices sharedServices].APIKey = @"您的key";
//导航SDK的key配置
[TNKNavServices sharedServices].key = @"您的key"
// 记录设备标识,反馈导航问题时请提供该设备标识以及发生问题的时间
NSString *deviceID = [TNKNaviServices sharedServices].identifier;
}
这篇文章对您解决问题是否有帮助?
已解决
未解决