CoreDataPlus CI

CoreDataPlus

GitHub release

Core Data 扩展。

要求

Swift 5.10 Platforms Xcode

Carthage Compatible CocoaPods Compatible

文档

文档 在线提供

安装

CocoaPods

CocoaPods 是 Cocoa 项目的依赖管理工具。您可以使用以下命令安装它

$ gem install cocoapods

要使用 CocoaPods 将 CoreDataPlus 集成到您的 Xcode 项目中,请在您的 Podfile 中指定它

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'CoreDataPlus', '~> 5.0.0'
end

然后,运行以下命令

$ pod install

Carthage

Carthage 是一个去中心化的依赖管理器,它可以构建您的依赖项并为您提供二进制框架。

您可以使用 Homebrew 使用以下命令安装 Carthage

$ brew update
$ brew install carthage

要使用 Carthage 将 CoreDataPlus 集成到您的 Xcode 项目中,请在您的 Cartfile 中指定它

github "alemar11/CoreDataPlus" ~> 5.0.0

运行 carthage update 以构建框架,并将构建好的 CoreDataPlus.framework 拖入您的 Xcode 项目。

Swift Package Manager

Swift Package Manager 是一个用于自动分发 Swift 代码的工具,它已集成到 swift 编译器中。 设置好 Swift 包后,添加 CoreDataPlus 作为依赖项就像将其添加到 Package.swiftdependencies 值一样简单。

dependencies: [
    .package(url: "https://github.com/alemar11/CoreDataPlus.git", from: "6.0.0")
]

手动

如果您不想使用上述任何一个依赖管理器,您可以手动将 CoreDataPlus 集成到您的项目中。

嵌入式框架

$ git init
$ git submodule add https://github.com/alemar11/CoreDataPlus.git

许可

License MIT

CoreDataPlus 在 MIT 许可下发布。 有关详细信息,请参阅 LICENSE

贡献

欢迎提交 Pull Request!
用 ★ 来表达你的 ❤