MobiCasket
特性
-
ℹ️ 添加MobiCasket特性
示例
示例应用程序是查看MobiCasket操作的最佳方式。只需打开MobiCasket.xcodeproj
并运行Example
配置方案。
安装
CocoaPods
MobiCasket通过CocoaPods提供。安装它,只需将以下行添加到Podfile中:
pod 'MobiCasket'
Carthage
Carthage 是一个去中心化的依赖管理器,它构建你的依赖关系,并向你提供二进制框架。
要使用 Carthage 将 MobiCasket 集成到您的 Xcode 项目中,请在您的 Cartfile
中指定它
github "mobilee/MobiCasket"
运行 carthage update
来构建框架,并将构建的 MobiCasket.framework
拖入您的 Xcode 项目。
在您的应用程序目标的“构建阶段”设置选项卡中,点击“+”图标,选择“新运行脚本阶段”,并添加 Carthage 入门步骤 4、5 和 6 中提到的框架路径
Swift 包管理器
要使用 Apple 的 Swift 包管理器 进行集成,请将以下内容作为依赖项添加到您的 Package.swift
dependencies: [
.package(url: "https://github.com/mobilee/MobiCasket.git", from: "1.0.0")
]
或者导航到您的 Xcode 项目,选中 Swift Packages
,然后点击 +
图标来搜索 MobiCasket
。
手动
如果您不想使用上述任何依赖管理器,您可以将 MobiCasket 手动集成到您的项目中。只需将 来源
文件夹拖入您的 Xcode 项目。
使用方法
贡献
欢迎贡献
许可
MobiCasket
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.