lesson 4

14
HIREVIETNAMESE iPhone Training Lesson 4

Upload: andrewhirevn

Post on 18-Jun-2015

358 views

Category:

Education


0 download

TRANSCRIPT

Page 1: Lesson 4

HIREVIETNAMESE

iPhone TrainingLesson 4

Page 2: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Contents

Storing Data1

Example 44

Exercise 45

2

Page 3: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Storing Data

3

Setting user Preferences with NSUserDefaults

Page 4: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

NSUserDefaults

Get a Handle to the NSUserDefaults object NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];

Saving [prefs setObject:ObjectToSave forKey:”KEY”];

Retrieving NSString *myString = [prefs stringForKey:@“KEY"];

4

Page 5: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Storing Data

5

Saving/Retrieving Data from a SQLite Database

Page 6: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Create Database

6

Page 7: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Check and Create DB

7

Page 8: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Select Statement

8

Page 9: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Delete Statement

9

Page 10: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Add Statement

10

Page 11: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Update Statement

11

Page 12: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Example 4

12

Page 13: Lesson 4

HIREVIETNAMESEhttp://www.hirevietnamese.com HIREVIETNAMESE

Exercise 4

13

Page 14: Lesson 4

HIREVIETNAMESE