CoreDataPlus
Core data extensions.
Requirements
Documentation
Documentation is available online.
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.1.0+ is required to build CoreDataPlus 1.0.0+.
To integrate CoreDataPlus into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!
target '<Your Target Name>' do
pod 'CoreDataPlus', '~> 3.0.0'
end
Then, run the following command:
$ pod install
Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate CoreDataPlus into your Xcode project using Carthage, specify it in your Cartfile
:
github "alemar11/CoreDataPlus" ~> 3.0.0
Run carthage update
to build the framework and drag the built CoreDataPlus.framework
into your Xcode project.
Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, adding CoreDataPlus as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/alemar11/CoreDataPlus.git", .upToNextMajor(from: "3.0.0"))
]
Manually
If you prefer not to use either of the aforementioned dependency managers, you can integrate CoreDataPlus into your project manually.
Embedded Framework
- Open up Terminal,
cd
into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:
$ git init
- Add CoreDataPlus as a git submodule by running the following command:
$ git submodule add https://github.com/alemar11/CoreDataPlus.git
-
Open the new
CoreDataPlus
folder, and drag theCoreDataPlus.xcodeproj
into the Project Navigator of your application's Xcode project.It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
-
Select the
CoreDataPlus.xcodeproj
in the Project Navigator and verify the deployment target matches that of your application target. -
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
-
In the tab bar at the top of that window, open the "General" panel.
-
Click on the
+
button under the "Embedded Binaries" section. -
You will see two different
CoreDataPlus.xcodeproj
folders each with two different versions of theCoreDataPlus.framework
nested inside aProducts
folder.It does not matter which
Products
folder you choose from, but it does matter whether you choose the top or bottomCoreDataPlus.framework
. -
Select the top
CoreDataPlus.framework
for iOS and the bottom one for macOS.You can verify which one you selected by inspecting the build log for your project. The build target for
CoreDataPlus
will be listed as eitherCoreDataPlus iOS
,CoreDataPlus macOS
,CoreDataPlus tvOS
orCoreDataPlus watchOS
.
License
CoreDataPlus is released under the MIT license. See LICENSE for details.
Contributing
Pull requests are welcome!
Show your ❤ with a ★
Github
link |
Stars: 7 |
Related Packages
You may find interesting
Releases
3.0.0-RC3 - 2020-11-21T18:23:17
- Added some new helper methods
- Added some transient properties in the testing model
3.0.0-RC2 - 2020-11-14T11:31:35
- Added support for Swift Package tests (Xcode or command line)
3.0.0-RC1 - 2020-10-14T08:53:41
- APIs improvements.
- New CoreData notifications payloads.
- History: added new history transactions and changes fetch requests.
- History: removed unused APIs.
- New batch inserts methods.
- Removed entity and contexts observers.
- More tests.
macOS not supported yet
2.3.0 - 2020-04-22T17:20:25
- Added NSSet utils.
- Added obtainPermanentID() method on NSManagedObject.
isMigrationPossible
renamed toisMigrationNecessary
.performAndWait
overload renamed toperformAndWaitResult
.- Now a WAL checkpoint can be performed before starting a migration.
- Minor refinements.
- More tests.
2.2.0 - 2019-10-10T12:21:04
- Added support for Persistent History Tracking.
- Added support for batch inserts.
- Added support for async fetch requests.
- Added materialize() method on NSManagedObject.
- Collection.fetchFaultedObjects() deprecated, use Collection.materializeFaultedObjects() instead.
- Added support for the new Xcode 11 SPM.
- More tests.
2.1.1 - 2019-07-06T10:52:28
- Minor refinements
2.1.0 - 2019-06-20T09:56:27
- Added ManagedObjectContextChangesObserver.
- Errors are now notified using NSErrors.
- Entity Observer now can listen to changes happening on subentities.
2.0.1 - 2019-04-04T12:19:55
- Small fixes
2.0.0 - 2019-03-27T13:31:39
- CoreData is now completely migrated to Swift 5.
- Fixes.
1.2.1 - 2018-12-19T16:19:48
- Fixed access level for some utils.
1.2.0 - 2018-09-24T19:12:44
- Mechanica is now completely migrated to Swift 4.2.
- CoreData migration refinements.
1.1.0 - 2018-09-13T12:06:43
- Added migration between model versions.
- Refinements.
1.0.0 - 2018-07-23T20:10:30
- Refinements.
- Added utils for batch updates and deletes.
- All the tests run with
-com.apple.CoreData.ConcurrencyDebug 1
0.9.1 - 2018-04-30T18:06:29
- Added more public API.
- More tests.
0.9.0 - 2018-04-26T09:06:52
- Added
FetchedResultsObjectChange
andFetchedResultsSectionInfo
. - Fixes.
0.8.0 - 2018-04-20T07:31:22
performSaveAndWait(after:)
andperformSave(after:)
now accepts throwing closures.- Added a new
performAndWait(:)
overload. - New tests.
- Fixes.
0.7.0 - 2018-03-31T14:13:53
- Swift 4.1 support
0.6.0 - 2018-03-07T13:52:03
- More NSManagedObject utils.
- SPM tests.
0.5.0 - 2018-03-04T21:15:44
- Added EntyObserver.
- Added more utils to get info when some changes are taking place in a NSManagedObjectContext.
0.4.0 - 2017-11-10T21:04:05
- Added a
CoreDataPlusError
type. - Added
NSBatchDeleteResult
utils. - Fixes.
0.3.0 - 2017-11-02T16:47:38
- Added more utility methods.
- Methods renaming.
0.2.0 - 2017-11-01T17:39:58
Refinements and tests.
0.1.0 - 2017-10-28T11:28:46
First release.