From the course: iOS App Development: Design Patterns for Mobile Architecture

Unlock the full course today

Join today to access over 22,500 courses taught by industry experts or purchase this course individually.

Load data

Load data

{QTtext}{timescale:100}{font:Verdana}{size:20}{backColor:0,0,0} {textColor:65280,65280,65280}{width:960}{justify:center} {plain} - [Instructor] I want you to know how we're loading - [Instructor] I want you to know how we're loading the data within the application. the data within the application. We're following a pretty common model where we load the data We're following a pretty common model where we load the data first from our local database and present it, first from our local database and present it, then we send off a request to a web server then we send off a request to a web server and download the latest changes. and download the latest changes. Next, we insert those changes into our local database, Next, we insert those changes into our local database, and then finally we re-query our local database and then finally we re-query our local database and present those changes. and present those changes. So, looking at the SpyListViewController on line 28, So…

Contents