You can find detailed documentation here: https://xaoxuu.com/wiki/axkit/.
You can install it in any of the following three ways:
1. Cocoapods
- Add
pod 'AXKit'
to your Podfile. - Run
pod install
orpod update
. - Import
<AXKit/AXKit.h>
.
2. Framework
- Download all the files in the
AXKit
subdirectory. - Add the
AXKit/Products/AXKit.framework
to your Xcode project. - Add
-ObjC
toOther Linker Flags
in/target/Build Setting
. - Import
<AXKit/AXKit.h>
.
3. Manually
- Download all the files in the
AXKit
subdirectory. - Delete
AXKit/Info.plist
and add theAXKit/*
to your Xcode project. - Import
"AXKit.h"
.
You can find example applications in our latest release , demonstrating how to use functions of AXKit.
AXKit is available under the MIT license. See the LICENSE file for more info.
你可以在这里查看详细的文档:https://xaoxuu.com/wiki/axkit/。
你可以使用以下三种方式中的任意一种方式进行安装:
1. CocoaPods 方式
- 在Podfile中添加
pod 'AXKit'
。 - 执行
pod install
或者pod update
。 - 导入头文件
<AXKit/AXKit.h>
。
2. 静态库方式
- 下载所有源码。
- 把
AXKit/Products/AXKit.framework
添加到项目中。 - 如果项目中第一次使用静态库,需要在target的Build Setting中搜索
Other Linker Flags
为Other Linker Flags
添加-ObjC
。 - 导入头文件
<AXKit/AXKit.h>
。
3. 手动导入
- 下载所有源码。
- 删除
AXKit
文件夹下的Info.plist
文件,并把AXKit
文件夹所有源码拖入项目中。 - 导入头文件
"AXKit.h"
。
你可以在我们 最新发布版本 中找到示例应用程序,演示如何使用AXKit的各种功能。
AXKit 使用 MIT 许可证,详情见 LICENSE 文件。