-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the first commit of the persist me test run
- Loading branch information
0 parents
commit b82e44e
Showing
16 changed files
with
1,458 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// AppDelegate.h | ||
// PersistMe | ||
// | ||
// Created by Eivind Bakke on 2/16/14. | ||
// Copyright (c) 2014 HALEALEI. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface AppDelegate : UIResponder <UIApplicationDelegate> | ||
|
||
@property (strong, nonatomic) UIWindow *window; | ||
|
||
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext; | ||
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel; | ||
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; | ||
|
||
- (void)saveContext; | ||
- (NSURL *)applicationDocumentsDirectory; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// | ||
// AppDelegate.m | ||
// PersistMe | ||
// | ||
// Created by Eivind Bakke on 2/16/14. | ||
// Copyright (c) 2014 HALEALEI. All rights reserved. | ||
// | ||
|
||
#import "AppDelegate.h" | ||
#import "ViewController.h" | ||
|
||
@implementation AppDelegate | ||
|
||
@synthesize managedObjectContext = _managedObjectContext; | ||
@synthesize managedObjectModel = _managedObjectModel; | ||
@synthesize persistentStoreCoordinator = _persistentStoreCoordinator; | ||
|
||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | ||
{ | ||
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; | ||
// Override point for customization after application launch. | ||
|
||
ViewController *vc = [[ViewController alloc]init]; | ||
[self.window setRootViewController:vc]; | ||
|
||
self.window.backgroundColor = [UIColor whiteColor]; | ||
[self.window makeKeyAndVisible]; | ||
return YES; | ||
} | ||
|
||
- (void)applicationWillResignActive:(UIApplication *)application | ||
{ | ||
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. | ||
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. | ||
} | ||
|
||
- (void)applicationDidEnterBackground:(UIApplication *)application | ||
{ | ||
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. | ||
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. | ||
} | ||
|
||
- (void)applicationWillEnterForeground:(UIApplication *)application | ||
{ | ||
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. | ||
} | ||
|
||
- (void)applicationDidBecomeActive:(UIApplication *)application | ||
{ | ||
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. | ||
} | ||
|
||
- (void)applicationWillTerminate:(UIApplication *)application | ||
{ | ||
// Saves changes in the application's managed object context before the application terminates. | ||
[self saveContext]; | ||
} | ||
|
||
- (void)saveContext | ||
{ | ||
NSError *error = nil; | ||
NSManagedObjectContext *managedObjectContext = self.managedObjectContext; | ||
if (managedObjectContext != nil) { | ||
if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) { | ||
// Replace this implementation with code to handle the error appropriately. | ||
// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. | ||
NSLog(@"Unresolved error %@, %@", error, [error userInfo]); | ||
abort(); | ||
} | ||
} | ||
} | ||
|
||
#pragma mark - Core Data stack | ||
|
||
// Returns the managed object context for the application. | ||
// If the context doesn't already exist, it is created and bound to the persistent store coordinator for the application. | ||
- (NSManagedObjectContext *)managedObjectContext | ||
{ | ||
if (_managedObjectContext != nil) { | ||
return _managedObjectContext; | ||
} | ||
|
||
NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator]; | ||
if (coordinator != nil) { | ||
_managedObjectContext = [[NSManagedObjectContext alloc] init]; | ||
[_managedObjectContext setPersistentStoreCoordinator:coordinator]; | ||
} | ||
return _managedObjectContext; | ||
} | ||
|
||
// Returns the managed object model for the application. | ||
// If the model doesn't already exist, it is created from the application's model. | ||
- (NSManagedObjectModel *)managedObjectModel | ||
{ | ||
if (_managedObjectModel != nil) { | ||
return _managedObjectModel; | ||
} | ||
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"PersistMe" withExtension:@"momd"]; | ||
_managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; | ||
return _managedObjectModel; | ||
} | ||
|
||
// Returns the persistent store coordinator for the application. | ||
// If the coordinator doesn't already exist, it is created and the application's store added to it. | ||
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator | ||
{ | ||
if (_persistentStoreCoordinator != nil) { | ||
return _persistentStoreCoordinator; | ||
} | ||
|
||
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"PersistMe.sqlite"]; | ||
|
||
NSError *error = nil; | ||
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]]; | ||
if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) { | ||
/* | ||
Replace this implementation with code to handle the error appropriately. | ||
abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. | ||
Typical reasons for an error here include: | ||
* The persistent store is not accessible; | ||
* The schema for the persistent store is incompatible with current managed object model. | ||
Check the error message to determine what the actual problem was. | ||
If the persistent store is not accessible, there is typically something wrong with the file path. Often, a file URL is pointing into the application's resources directory instead of a writeable directory. | ||
If you encounter schema incompatibility errors during development, you can reduce their frequency by: | ||
* Simply deleting the existing store: | ||
[[NSFileManager defaultManager] removeItemAtURL:storeURL error:nil] | ||
* Performing automatic lightweight migration by passing the following dictionary as the options parameter: | ||
@{NSMigratePersistentStoresAutomaticallyOption:@YES, NSInferMappingModelAutomaticallyOption:@YES} | ||
Lightweight migration will only work for a limited set of schema changes; consult "Core Data Model Versioning and Data Migration Programming Guide" for details. | ||
*/ | ||
NSLog(@"Unresolved error %@, %@", error, [error userInfo]); | ||
abort(); | ||
} | ||
|
||
return _persistentStoreCoordinator; | ||
} | ||
|
||
#pragma mark - Application's Documents directory | ||
|
||
// Returns the URL to the application's Documents directory. | ||
- (NSURL *)applicationDocumentsDirectory | ||
{ | ||
return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject]; | ||
} | ||
|
||
@end |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>${PRODUCT_NAME}</string> | ||
<key>CFBundleExecutable</key> | ||
<string>${EXECUTABLE_NAME}</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.halealei.${PRODUCT_NAME:rfc1034identifier}</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>${PRODUCT_NAME}</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>LSRequiresIPhoneOS</key> | ||
<true/> | ||
<key>UIRequiredDeviceCapabilities</key> | ||
<array> | ||
<string>armv7</string> | ||
</array> | ||
<key>UISupportedInterfaceOrientations</key> | ||
<array> | ||
<string>UIInterfaceOrientationPortrait</string> | ||
<string>UIInterfaceOrientationLandscapeLeft</string> | ||
<string>UIInterfaceOrientationLandscapeRight</string> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// Prefix header for all source files of the 'PersistMe' target in the 'PersistMe' project | ||
// | ||
|
||
#import <Availability.h> | ||
|
||
#ifndef __IPHONE_3_0 | ||
#warning "This project uses features only available in iOS SDK 3.0 and later." | ||
#endif | ||
|
||
#ifdef __OBJC__ | ||
#import <UIKit/UIKit.h> | ||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<model name="" userDefinedModelVersionIdentifier="" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="2061" systemVersion="12E55" minimumToolsVersion="Automatic" macOSVersion="Automatic" iOSVersion="Automatic"> | ||
<entity name="Person" syncable="YES"> | ||
<attribute name="firstname" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="lastname" optional="YES" attributeType="String" syncable="YES"/> | ||
</entity> | ||
<elements> | ||
<element name="Person" positionX="160" positionY="192" width="128" height="75"/> | ||
</elements> | ||
</model> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>_XCCurrentVersionName</key> | ||
<string>PersistMe.xcdatamodel</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// Person.h | ||
// PersistMe | ||
// | ||
// Created by Eivind Bakke on 2/16/14. | ||
// Copyright (c) 2014 HALEALEI. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface Person : NSObject | ||
|
||
@property (nonatomic, strong) NSString *firstname; | ||
@property (nonatomic, strong) NSString *lastname; | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Person.m | ||
// PersistMe | ||
// | ||
// Created by Eivind Bakke on 2/16/14. | ||
// Copyright (c) 2014 HALEALEI. All rights reserved. | ||
// | ||
|
||
#import "Person.h" | ||
|
||
@implementation Person | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// ViewController.h | ||
// PersistMe | ||
// | ||
// Created by Eivind Bakke on 2/16/14. | ||
// Copyright (c) 2014 HALEALEI. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface ViewController : UIViewController<UITextFieldDelegate> | ||
|
||
@property (weak, nonatomic) IBOutlet UITextField *firstname; | ||
@property (weak, nonatomic) IBOutlet UITextField *lastname; | ||
@property (weak, nonatomic) IBOutlet UILabel *label; | ||
- (IBAction)addPersonButton:(id)sender; | ||
|
||
- (IBAction)searchPersonButton:(id)sender; | ||
|
||
- (IBAction)deletePersonButton:(id)sender; | ||
|
||
@end |
Oops, something went wrong.