Fastlee
功能
⤴️ 协调器 -- 基于SOLID原则的导航协调器🖼 可加载的 -- 容易从 Storyboard 和 XIB 初始化🎯 日志记录器 -- 在控制台上打印带有上下文信息的消息
示例
示例应用是查看 Fastlee
如何工作的最佳方式。只需打开 Fastlee.xcodeproj
并运行 Example
模式。
日期选择器演示
安装
CocoaPods
Fastlee 可以通过 CocoaPods 获得。要安装它,只需将以下行添加到您的 Podfile 中
pod 'Fastlee'
Carthage
Carthage 是一个去中心化的依赖项管理器,它会构建您的依赖项并提供二进制框架。
要使用 Carthage 将 Fastlee 集成到您的 Xcode 项目中,请在您的 Cartfile
中指定它
github "mobilee/Fastlee"
运行 carthage update
构建框架并将构建的 Fastlee.framework
拖到您的 Xcode 项目中。
在应用程序目标的“构建阶段”设置选项卡上,单击“+”图标,选择“新运行脚本阶段”并将框架路径添加到Carthage 入门步骤 4、5 和 6 中提到的位置
Swift 包管理器
要使用 Apple 的 Swift 包管理器 进行集成,请在您的 Package.swift
中添加以下依赖项:
dependencies: [
.package(url: "https://github.com/mobilee/Fastlee.git", from: "1.0.0")
]
或者,导航到您的 Xcode 项目,选择 Swift Packages
并点击 +
图标以搜索 Fastlee
。
手动
如果您不想使用上述任何依赖管理器,可以将 Fastlee 手动集成到您的项目中。只需将 Sources
文件夹拖入您的 Xcode 项目即可。
用法
待办事项:创建包含所有可用工具的文档。
贡献
欢迎贡献
授权协议
Fastlee
Copyright (c) 2020 Mobilee [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.