非死book宣布开源新版本的Swift SDK for iOS
jopen 8年前
<p style="text-align: center;"><img alt="" src="https://simg.open-open.com/show/9cc21e4b55505518371e09d26e4b9f73.png" /></p> <p>非死book宣布开源 <a href="/misc/goto?guid=4958992305757297843" rel="nofollow,noindex">新版本的Swift SDK</a> 。现在,该版本 <a href="/misc/goto?guid=4958992305864105527" rel="nofollow,noindex">还处于Beta测试状态</a> ,其目标是让开发人员可以更轻松地将非死book服务集成进他们的iOS应用。</p> <p>非死book Swift SDK for Swift支持许多非死book服务,包括 <a href="/misc/goto?guid=4958992305949790247" rel="nofollow,noindex">非死book分析</a> 、 <a href="/misc/goto?guid=4958992306047134264" rel="nofollow,noindex">非死book登录</a> 、 <a href="/misc/goto?guid=4958992306140603590" rel="nofollow,noindex">分享到非死book</a> 和 <a href="/misc/goto?guid=4958992306231976057" rel="nofollow,noindex">非死book Graph API</a> 。该SDK以现有的 <a href="/misc/goto?guid=4958992306323832808" rel="nofollow,noindex">Objective-C 非死book SDK</a> 为基础构建了一套封装器,旨在提供一种原生的Swift API和更简单的开发体验。</p> <p>非死book Swift SDK支持两个最流行的iOS/macOS包管理系统 <a href="/misc/goto?guid=4958876601167114464" rel="nofollow,noindex">CocoaPods</a> 和 <a href="/misc/goto?guid=4958877729065386929" rel="nofollow,noindex">Carthage</a> 。使用CocoaPods添加该SDK的话,可以在Podfile中添加以下几行信息:</p> <pre> pod '非死bookCore' pod '非死bookLogin' pod '非死bookShare'</pre> <p>如果使用Carthage,则可以在Cartfile中添加下面这行信息:</p> <pre> github "非死book/非死book-SDK-Swift"</pre> <p>另外,你还可以将非死book Swift SDK作为Xcode项目的子项目。不过使用这种方法时,你需要注意所有的依赖( <code>FBSDKCoreKit.framework</code> 、 <code>FBSDKLoginKit.framework</code> 和 <code>FBSDKShareKit.framework</code> ,等等)及它们的升级。</p> <p>非死book Swift SDK的GitHub库包含一个示例项目,说明如何将支持的服务集成进你的应用。下面是一个如何使用该SDK提供的 <code>ShareDialogViewController</code> 分享照片的例子:</p> <pre> let photo = Photo(image: UIImage(named: "sky.jpg")!, userGenerated: true) let content = PhotoShareContent(photos: [photo]) let dialog = ShareDialog(content: content) dialog.presentingViewController = self dialog.mode = .Automatic do { try dialog.show() } catch (let error) { let alertController = UIAlertController(title: "Invalid share content", message: "Failed to present share dialog with error \(error)") presentViewController(alertController, animated: true, completion: nil) }</pre> <p>非死book Swift SDK面向Swift 2.2.1和2.3,允许开发人员将应用提交到应用商店。按照计划,非死book将在今年下半年,当Swift 3最终构建版发布的时候,提供对Swift 3的支持。</p> <p><a href="/misc/goto?guid=4958992306483181337">阅读原文</a></p>