iCloud Storage in iPhone

Introduction

iCloud allows users to store data such as music files on remote computer servers for download to multiple devices such as iPhones, iPods, iPads, and personal computers running Mac OS X or Microsoft Windows. It works by remembering your device's settings, apps, home screen layouts, ring tones and text messages, so all of that information is available if you upgrade or replace your iPhone or iPad.

In this article I will create a single-view application. Here we add an entitlement plist file for storage. In xib we add a text field and button from outlets.

To better understand, use the following instructions.

Step 1

Open Xcode by double-clicking on it.

Step 2

Create a New XCode Project by clicking on it.

Step 3

Now "Select Single View Application" and click on "Next".

Step 4

Now provide your Product Name and Company Identifier.

Step 5

Select the location where you want to save your project and click on "Create".

Step 6

Now we write the code.

AppDelegate.h

#import <UIKit/UIKit.h>
@class iCloudKeysViewController;
@interface iCloudKeysAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) iCloudKeysViewController *viewController;
@end

AppDelegate.m

#import "iCloudKeysAppDelegate.h"
#import "iCloudKeysViewController.h"
@implementation iCloudKeysAppDelegate
- (void)dealloc

{

[_window release];

[_viewController release];

[super dealloc];

}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];

// Override point for customization after application launch.

self.viewController = [[[iCloudKeysViewController alloc] initWithNibName:@"iCloudKeysViewController" bundle:nil] autorelease];

self.window.rootViewController = self.viewController;

[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

{

// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.

}
@end

ViewController.h

#import <UIKit/UIKit.h>

@interface iCloudKeysViewController : UIViewController

@property (strong, nonatomic) NSUbiquitousKeyValueStore *keyStore;

@property (strong, nonatomic) IBOutlet UITextField *textField;

-(IBAction)saveKey;

@end


ViewController.m

#import "iCloudKeysViewController.h"

@interface iCloudKeysViewController ()

@end

@implementation iCloudKeysViewController

@synthesize textField, keyStore;

-(void)saveKey

{

[keyStore setString:textField.text forKey:@"MyString"];

[keyStore synchronize];

NSLog(@"Save key");

}

- (void)didReceiveMemoryWarning

{

[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.

}

#pragma mark - View lifecycle

- (void)viewDidLoad

{

[super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

keyStore = [[NSUbiquitousKeyValueStore alloc] init];

NSString *storedString = [keyStore stringForKey:@"MyString"];

if (storedString != nil)

{

textField.text = storedString;

}

[[NSNotificationCenter defaultCenter] addObserver:self

selector:@selector(ubiquitousKeyValueStoreDidChange:)

name:NSUbiquitousKeyValueStoreDidChangeExternallyNotification

object:keyStore];

}

-(void) ubiquitousKeyValueStoreDidChange: (NSNotification *)notification

{

NSLog(@"External Change detected");

UIAlertView *alert = [[UIAlertView alloc]

initWithTitle:@"Change detected"

message:@"Change detected"

delegate:nil

cancelButtonTitle:@"Ok"

otherButtonTitles:nil, nil];

[alert show];

textField.text = [keyStore stringForKey:@"MyString"];

}

@end

ViewController.Xib

xib-file-in-iPhone.png

Step 7

Click on the "Run" button to show the output.

Step 8

Output1 in iPhone:

Output1-in-iPhone.png

Output2 in iPhone:

Output2-in-iPhone.png

Here we save the string value on iCloud.

Output on Xcode:

After clicking "Save" button the output shows on the xcode output window.

Output-on-xcode.png


Similar Articles