Skygear iOS SDK
Skygear 服务器是一个云后端,使 Web 和移动应用开发变得更简单。 https://skygear.io
SKYKit(Skygear iOS SDK)库,让您能够从您的 iOS 应用程序访问 Skygear 服务器。
入门指南
要开始,您需要在您的应用程序中安装 Skygear 服务器并运行 iOS SDK。您可以在https://docs.skygear.io/guides/intro/quickstart/ios/ 的入门指南中查看详细步骤。
您可以在 Skygear 开发者门户 https://portal.skygear.io 注册 Skygear 主机。
使用 CocoaPods 安装
您可以通过 CocoaPods 安装 SKYKit,首先您需要安装 CocoaPods。
$ gem install cocoapods
要使用 CocoaPods 将 SKYKit 集成到您的 Xcode 项目中,请在您的 Podfile 中指定它。
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod 'SKYKit'
子规格
Podspec 'SKYKit' 包含与 Skygear 交互所需的一切,包括功能,如 Facebook 登录和忘记密码。如果想要减小依赖项的大小,可以使用 SKYKit/Core
子规范。
# Install everything
pod `SKYKit`
# Only install the core functionality
pod `SKYKit/Core`
# You can pick which options do you want
pod `SKYKit/Facebook`
pod `SKYKit/ForgotPassword`
然后,运行以下命令
$ pod install
有关更多详细信息和其他安装指南,请参阅 Skygear 入门指南,地址为 Skygear 文档网站。
文档
Skygear 的完整文档可在我们的文档网站上找到。iOS SDK 入门指南 iOS SDK get started guide 是一个好的开始点。
支持
有关实施相关问题或技术支持,请在 官方论坛 或 社区聊天 中找到我们。
如果您认为找到了 Skygear iOS SDK 的问题,请随时 报告一个问题。
如何贡献
欢迎提交拉取请求!
我们非常希望看到 Skygear 在开源社区中茁壮成长。如果您有任何修复或建议,只需向我们发送一个拉取请求即可!
许可 & 版权
Copyright (c) 2015-present, Oursky Ltd.
All rights reserved.
This source code is licensed under the Apache License version 2.0
found in the LICENSE file in the root directory of this source tree.
An additional grant of patent rights can be found in the PATENTS
file in the same directory.