Core Data iOS Essentials /

Saved in:
Bibliographic Details
Author / Creator:Harwani, B. M.
Imprint:Birmingham, UK : Packt, ©2011.
Description:1 online resource (vii, 319 pages) : color illustrations.
Language:English
Series:Community experience distilled
Community experience distilled.
Subject:
Format: E-Resource Book
URL for this record:http://pi.lib.uchicago.edu/1001/cat/bib/11256357
Hidden Bibliographic Details
ISBN:9781849690959
1849690952
1849690944
9781849690942
9781849690942
Digital file characteristics:text file
Notes:English.
Summary:Annotation Core Data is the essential ingredient in data driven iOS apps. It's used for storing, retrieving, and manipulating application data in databases, XML, and binary formats. It's an essential component for iPhone, iPod Touch, and iPad apps.

Core Data Essentials provides a clear, readable guide to the most useful aspects of Core Data. Built around a realistic example app, the book showcases the most important aspects of Core Data development in the context of a complete, functioning app written in Objective C.

The book starts with a tour of how the app works. Then you'll see how to easily display data using the Table View. You'll learn how to develop an appropriate data model that fits the needs of your app, then implement that model as updatable data objects. You'll see how to update data and build relationships between objects and learn how Core Data can work with search, and how to provide your users with friendly data editing features.

MARC

LEADER 00000cam a2200000Ia 4500
001 11256357
005 20210426223313.7
006 m o d
007 cr cnu---unuuu
008 110524s2011 enka o 001 0 eng d
015 |a GBB6G4278  |2 bnb 
016 7 |a 018014139  |2 Uk 
019 |a 969064772  |a 994585099 
020 |a 9781849690959  |q (electronic bk.) 
020 |a 1849690952  |q (electronic bk.) 
020 |a 1849690944 
020 |a 9781849690942 
020 |z 9781849690942 
035 |a (OCoLC)726972216  |z (OCoLC)969064772  |z (OCoLC)994585099 
035 9 |a (OCLCCM-CC)726972216 
037 |a 137734792935890272  |b TotalBoox  |f Ebook only  |n www.totalboox.com 
040 |a N$T  |b eng  |e pn  |c N$T  |d OCLCQ  |d S4S  |d OCLCQ  |d OCLCO  |d OCLCQ  |d DKDLA  |d OCLCQ  |d YDXCP  |d OCLCQ  |d OCLCO  |d COO  |d OCLCO  |d OCLCQ  |d OCLCO  |d AGLDB  |d ICA  |d Z5A  |d JBG  |d OCLCQ  |d XFH  |d FEM  |d OCLCO  |d D6H  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCF  |d VTS  |d UKMGB  |d WYU  |d S9I  |d STF  |d UKAHL  |d K6U 
049 |a MAIN 
050 4 |a QA76.59  |b .H37 2011eb 
072 7 |a COM  |x 050020  |2 bisacsh 
072 7 |a COM  |x 050010  |2 bisacsh 
100 1 |a Harwani, B. M.  |0 http://id.loc.gov/authorities/names/no2010063388 
245 1 0 |a Core Data iOS Essentials /  |c B.M. Harwani. 
260 |a Birmingham, UK :  |b Packt,  |c ©2011. 
300 |a 1 online resource (vii, 319 pages) :  |b color illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |2 rda 
490 1 |a Community experience distilled 
520 8 |a Annotation  |b Core Data is the essential ingredient in data driven iOS apps. It's used for storing, retrieving, and manipulating application data in databases, XML, and binary formats. It's an essential component for iPhone, iPod Touch, and iPad apps.<br /><br />Core Data Essentials provides a clear, readable guide to the most useful aspects of Core Data. Built around a realistic example app, the book showcases the most important aspects of Core Data development in the context of a complete, functioning app written in Objective C.<br /><br />The book starts with a tour of how the app works. Then you'll see how to easily display data using the Table View. You'll learn how to develop an appropriate data model that fits the needs of your app, then implement that model as updatable data objects. You'll see how to update data and build relationships between objects and learn how Core Data can work with search, and how to provide your users with friendly data editing features. 
505 0 |a 1. Overview -- 2. Understanding Core Data -- 3. Understanding Objective-C Protocol and Table View -- 4. Designing a Data Model and Building Data Objects for Customers -- 5. Creating, Listing, and Deleting Names of Customers -- 6. Creating, Listing, Displaying, and Deleting Records of Customers -- 7. Updating and Searching Records of Customers -- 8. Entering, Saving, Listing, and Deleting the Records of the Products Sold to the Customers -- 9. Entering, Displaying, and Deleting the Stock -- 10. Editing the Stock Information -- 11. Displaying the Products for Sale and Updating the Stock. 
505 0 0 |g 1.  |t Overview --  |t Prerequisite --  |t A brief history --  |t Enterprise Object Framework (EOF) --  |t Core Data --  |t Why use Xcode --  |t Source code --  |t Shall we begin? --  |g 2.  |t Understanding Core Data --  |t Core Data --  |t Core Data features --  |t Data Model --  |t Entities --  |t Properties --  |t Attributes --  |t Relationships --  |t Inverse relationship --  |t Model View Controller (MVC) --  |t Core Data API --  |t Persistent Store --  |t Persistent Store Coordinator --  |t FetchRequest --  |t FetchedResultsController --  |t Overview of the application: Sales Record System for a Departmental Store --  |t Entity Relationship Diagram --  |t An application output sample --  |t Entering Master Product Information --  |t Modifying the Master Product --  |t Deleting the Master Product --  |t Entering customer information and order details --  |t Deleting customer information --  |t Searching for specific customers --  |t Searching and modifying customer information --  |t Entering Customer Sales Information --  |t Automatic Master Product Update --  |t Summary --  |g 3.  |t Understanding Objective-C Protocol and Table View --  |t Protocol --  |t Implementing the Strategy pattern --  |t Defining the protocol --  |t Creating a delegate property --  |t Declaring protocol methods --  |t Creating a sample application using a protocol and a delegate --  |t Adding the ViewController class for entering numerical values --  |t Defining the protocol, outlets, and action methods in the SecondViewController.h header file --  |t Defining the SecondViewController class and connecting controls --  |t Invoking delegate methods from the SecondViewController.m implementation file --  |t Declaring the delegate, outlet, and action methods in the demodelegateViewController.h header file --  |t Defining the demodelegateViewController and connecting controls --  |t Implementing the protocol methods in the demodelegateViewController.m file --  |t Running the project --  |t Introduction to Table View --  |t Creating an application to display Table View cells --  |t Declaring an array in the header file --  |t Implementing UITableViewDataSource protocol methods --  |t Adding names to the Table View --  |t Adding the AddNameController View controller --  |t Defining protocols, outlets, and action methods in the AddNameController.h header file --  |t Defining the AddNameController class View and connecting controls --  |t Invoking Delegate methods in the AddNameController.m implementation file --  |t Invoking the AddNameController View and implementing the protocol methods --  |t Placing and connecting the Bar Button Item control in the RootViewController --  |t Summary --  |g 4.  |t Designing a Data Model and Building Data Objects for Customers --  |t Creating a new project --  |t Designing the data model --  |t Data Model Editor --  |t Adding an entity --  |t Adding an attribute property --  |t Types of attributes --  |t Fields applying constraints --  |t Building data objects for the Customer entity --  |t Understanding code of autogenerated files --  |t Header file of Application Delegate --  |t Implementation file of Application Delegate --  |t applicationWillTerminate method --  |t managedObjectContext method --  |t managedObjectModel method --  |t persistentStoreCoordinator method --  |t applicationDocumentsDirectory method --  |t Summary --  |g 5.  |t Creating, Listing, and Deleting Names of Customers --  |t Splitting the task into two modules --  |t Creating a module to save and delete a customer's name --  |t Using the ViewController class for adding the name of the customer --  |t Defining protocol, outlets, and action methods in the header file --  |t Defining the View of the AddNameController class and connecting controls --  |t Invoking delegate methods from the implementation file --  |t Declaring delegate and implementing methods for storing the name of the customers --  |t Key value coding (KVC) --  |t Key value methods --  |t The -valueForKey: method --  |t The -setValue:forKey: method --  |t Keypath --  |t Implementing the methods of the NSFetchedResultsControllerDelegate protocol --  |t The controllerWillChangeContent method --  |t The controllerDidChangeContent method --  |t The controller:didChangeObject method --  |t The controller:didChangeSection method --  |t Running the project --  |t Summary. 
505 0 0 |g 6.  |t Creating, Listing, Displaying, and Deleting Records of Customers --  |t Understanding multiple managed object context --  |t NSNotification --  |t Applying the concept of multiple managed object context in our application --  |t Enhancing our application to save, list, display, and delete customer information --  |t Adding the ViewController class --  |t Defining a View for entering the customer's information and connecting controls --  |t Coding in the implementation file for accepting the customer's information and invoking delegate methods --  |t Adding the View Controller class for displaying the customer's information --  |t Defining the View and writing the code in the implementation file for displaying the customer's information --  |t Implementing the methods in the RootViewController class for storing the customer's information --  |t viewDidLoad method --  |t cell AtIndexPath method --  |t didSelectRowAtIndexPath method --  |t addCustomer method --  |t addcustomerController method --  |t Viewing the project --  |t Summary --  |g 7.  |t Updating and Searching Records of Customers --  |t Applying the update feature --  |t Defining a protocol in the DisplayCustomerController class --  |t Adding Edit button to enable modifications in the View of DisplayCustomerController class --  |t Implementing the protocol's method for storing modified customer information --  |t Using KVO to know what has been updated --  |t Running the project --  |t Applying search facility --  |t Defining outlet of UISearchBar class in the header file of the RootViewController class --  |t Placing the Search Bar control in the View of RootViewController and specifying its delegate --  |t Implementing delegate method in the RootViewController class to apply searching --  |t Understanding NSPredicate --  |t Removing the keyboard after selecting a customer's name --  |t Using Predicate Builder for creating a search criterion --  |t Fetched properties --  |t Fetch request templates --  |t Building and accessing a fetch request without variable --  |t Building and accessing a fetch request with a variable --  |t Summary --  |g 8.  |t Entering, Saving, Listing, and Deleting the Records of the Products Sold to the Customers --  |t Adding the product entity to the Data Model --  |t Relationship --  |t Types of relationships --  |t One to one relationship --  |t One to many relationship --  |t Many to many relationship --  |t Establishing a relationship between the Customer and the Product entities --  |t Setting a relationship from the Customer entity to the Product entity --  |t Delete rule --  |t Setting a relationship from the Product entity to the Customer entity (inverse relationship) --  |t Building the data object for the Customer and the Product entities --  |t Understanding the role of the auto generated special methods of a relationship --  |t Entering the information of the products sold to the customers --  |t Creating a module to develop an interface to enter the product information --  |t Adding a ViewController class for entering the information of the products sold to the customers --  |t Defining the protocol, outlets, and action methods in the header file --  |t Designing the View of the AddProductController class and connecting the controls --  |t Invoking the delegate methods from the implementation file --  |t Developing a module to create a menu for manipulating the product information --  |t Adding a ViewController class to display the Product's menu to manipulate the product's information --  |t Defining the outlets and action methods in the header file --  |t Designing the View of a ProductInfoController class and connecting the controls --  |t Coding in the implementation file to save, edit, and display the product's information --  |t Creating a module to connect the Product's menu to the rest of the project --  |t Defining the outlets and action methods in the header file --  |t Adding a Toolbar control to the View of the DisplayCustomerController class --  |t Coding in the implementation file to invoke the View of the ProductInfoController class --  |t Running the project --  |t Summary --  |g 9.  |t Entering, Displaying, and Deleting the Stock --  |t Adding the MasterProduct entity to the Data Model --  |t Storing the image of the MasterProduct --  |t Transformable data type --  |t The Value Transformer Name: field --  |t Creating a value transformer --  |t Building the data object for the MasterProduct entity --  |t Maintaining the MasterProduct information --  |t Image Picker --  |t Adding custom images to the Image Picker --  |t Making an image appear within a given size --  |t Module to develop interface to enter the information of the MasterProduct --  |t Adding the ViewController class for entering information of the master products --  |t Defining protocol, outlets, and action methods in the header file --  |t Designing the View of the MasterProductController class and connecting controls --  |t Invoking the delegate and ImagePicker methods from the implementation file --  |t Module to create a menu for manipulating the MasterProduct information --  |t Adding the View Controller class to display a menu for adding, editing, and displaying the MasterProducts --  |t Defining the outlets and action methods in the header file --  |t Designing the View of the MasterProductInfoController class and connecting controls --  |t Coding in the implementation file to save, edit, and display the master product's information --  |t Summary --  |g 10.  |t Editing the Stock Information --  |t Module to connect the MasterProduct's menu to the rest of the project --  |t Defining outlets and action methods in the header file --  |t Adding a Toolbar and a Bar Button Item in the RootViewController class --  |t Coding in the implementation file to invoke the View of the MasterProductinfoController class --  |t Making the Toolbar to appear at the bottom of the View --  |t Running the application --  |t Selecting the image of the master product --  |t Deleting the master product --  |t Module to modify the information of the master product --  |t Adding the View Controller class to display the view to modify the selected master product --  |t Defining the outlets and action methods in the header file --  |t Designing the View of EditMasterProductController class --  |t Coding in the implementation file to modify the master product's information --  |t Importing the delegate and the View Controller class in the header file --  |t Coding in the implementation file to invoke the View of the EditMasterProductController class --  |t Summary --  |g 11.  |t Displaying the Products for Sale and Updating the Stock --  |t Displaying the products available for sale --  |t Adding the SearchProductController class --  |t Designing the view of SearchProductController --  |t Coding in the SearchProductController class --  |t Invoking the SearchProductController from the Product menu --  |t Displaying name, price, and image of the selected product --  |t Updating the stock --  |t Running the project --  |t Automatically updating the quantity of the product in the MasterProduct entity --  |t Versioning --  |t Creating a new Data Model version --  |t Migrations --  |t Implementing lightweight migration to our application --  |t Summary. 
546 |a English. 
630 0 0 |a iOS (Electronic resource)  |0 http://id.loc.gov/authorities/names/n2010039603 
630 0 7 |a iOS (Electronic resource)  |2 fast  |0 (OCoLC)fst01784820 
650 0 |a iPhone (Smartphone)  |x Programming. 
650 0 |a iPad (Computer)  |x Programming. 
650 0 |a iPod touch (Digital music player)  |x Programming. 
650 7 |a COMPUTERS  |x Hardware  |x Personal Computers  |x Macintosh.  |2 bisacsh 
650 7 |a COMPUTERS  |x Hardware  |x Personal Computers  |x PCs.  |2 bisacsh 
655 0 |a Electronic books. 
655 4 |a Electronic books. 
830 0 |a Community experience distilled.  |0 http://id.loc.gov/authorities/names/no2011030603 
903 |a HeVa 
929 |a oclccm 
999 f f |i f54fa3dc-e09b-5cc1-8c7e-bef262dc5a98  |s a247ab6f-9903-5f2c-bf44-c9c1f17b39c1 
928 |t Library of Congress classification  |a QA76.59 .H37 2011eb  |l Online  |c UC-FullText  |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=e000xna&AN=365687  |z eBooks on EBSCOhost  |g ebooks  |i 12348917