LaunchKit iOS SDK 支持 LaunchKit 中的一些应用级产品,例如 超级用户。
您可以通过克隆仓库或下载最新发布版来手动安装 LaunchKit SDK,并将文件复制到
LaunchKit/Classes
...到您的项目中。此外,您还需要
zlib
添加为您的应用目标的依赖项。LAUNCHKIT_MANUAL_IMPORT=1
,对于所有配置(默认为 Debug 和 Release)。见屏幕截图在您的 -applicationDidFinishLaunching:withOptions:
的顶部附近添加 [LaunchKit launchWithToken:@"YOUR_API_TOKEN"]
,其中 YOUR_API_TOKEN
是您可以在此处获取的特殊令牌。
#import <LaunchKit/LaunchKit.h>
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Add this line
[LaunchKit launchWithToken:@"YOUR_API_TOKEN"]
...
}
import LaunchKit
...
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Add this line
LaunchKit.launchWithToken("YOUR_API_TOKEN")
...
}
Cluster Labs, Inc.,[email protected]
LaunchKit 可在 Apache 2.0 许可证下获得。有关更多信息,请参阅 LICENSE 文件。