https://github.com/xaoxuu/axkit
系统类的功能扩展和一些常用的控件封装。文档地址:https://xaoxuu.com/wiki/axkit
https://github.com/xaoxuu/axkit
cocoa cocoapods framework ios objective-c podfile xcode
Last synced: 11 months ago
JSON representation
系统类的功能扩展和一些常用的控件封装。文档地址:https://xaoxuu.com/wiki/axkit
- Host: GitHub
- URL: https://github.com/xaoxuu/axkit
- Owner: xaoxuu
- License: mit
- Created: 2017-03-05T10:48:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T09:50:31.000Z (over 5 years ago)
- Last Synced: 2025-04-12T01:17:02.036Z (11 months ago)
- Topics: cocoa, cocoapods, framework, ios, objective-c, podfile, xcode
- Language: Objective-C
- Homepage:
- Size: 18.8 MB
- Stars: 27
- Watchers: 3
- Forks: 4
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

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