My application is somehowe a library, represented by a UITableView, each row displays three book icons, pressing on any icon would cause the app to navigate to a scrollview that scrolls between the book pages. Each book is represented in the resources directory by two things :
1- a .plist file, eg : Book1.plist
2- a folder containing images ( each one corresponds to a book page )
I want to allow the user to buy new books, so if he wants to buy a certain book, what happens is that the new book's "plist file" & "images folder" are downloaded to the application, and then the book is automatically displayed in the UITableView (I have done this last part, which is : adding a new plist file to the app would update the UITableView with a new book icon).
SO how can this downloading thing be achieved ? I think that the user, when clicking on the "download new book" button, should navigate to apple store webpage which contains the books that should be downloaded right ? Then buying a book would directly download the "plist file" & "images folder" to the application, but how can this be done ?
Please can anyone offer a detailed help, and thanks in advance