diff --git a/_includes/ios/in-app-purchases.md b/_includes/ios/in-app-purchases.md index 2c6ad0a22..77f9c9e13 100644 --- a/_includes/ios/in-app-purchases.md +++ b/_includes/ios/in-app-purchases.md @@ -150,7 +150,7 @@ if let product = productQuery.findObjects.lastObject as? PFProduct {} ## PFProductTableViewController - + `PFProductTableViewController` is a subclass of `PFQueryTableViewController` that displays all IAP products in a table view. Some content apps, such as an app that sells comic books or video tutorials, may find it handy to use `PFProductTableViewController` to sell the products. By default, each cell is a product, and tapping on a cell initiates the purchase for the product. If the product has associated downloadable content, the download will start when the cell is selected and a progress bar is displayed to indicate the progress of the download. diff --git a/_includes/ios/user-interface.md b/_includes/ios/user-interface.md index bbdcb9854..d9e7029b7 100644 --- a/_includes/ios/user-interface.md +++ b/_includes/ios/user-interface.md @@ -528,7 +528,7 @@ class SimpleTableViewController : PFQueryTableViewController { } - + This view shows a list of Todo items and also allows the user to pull-to-refresh and load the next page by touching a special pagination cell at the end of the table. It also properly caches the objects such that when the view is no longer in memory, the next time it loads it will use the query cache to immediately show the previously loaded objects while making a network call to update. @@ -576,7 +576,7 @@ override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: } - + This table shows a list of cute animal photos which are stored in the Parse Cloud, as `PFFile`s. "placeholder.jpg" is an image included in the application bundle which is shown before the animal photos are downloaded. @@ -600,7 +600,7 @@ Several methods are exposed that are called at major events during the data life ### Pagination - + Pagination ensures that the table only gets one page of objects at a time. You can customize how many objects are in a page by setting the `objectsPerPage` instance variable. @@ -610,7 +610,7 @@ Pagination is turned on by default. If you want to turn it off, simply set `pagi ### Pull to Refresh - + Pull to Refresh is a feature that allows users to pull the table down and release to reload the data. Essentially, the first page of data is reloaded from your class and the table is cleared and updated with the data. diff --git a/img/favicon/favicon-160x160.png b/img/favicon/favicon-160x160.png new file mode 100755 index 000000000..db538b7e9 Binary files /dev/null and b/img/favicon/favicon-160x160.png differ diff --git a/img/favicon/favicon-192x192.png b/img/favicon/favicon-192x192.png new file mode 100755 index 000000000..5cb3d98ff Binary files /dev/null and b/img/favicon/favicon-192x192.png differ diff --git a/img/favicon/favicon-194x194.png b/img/favicon/favicon-194x194.png deleted file mode 100755 index 5da56a4f0..000000000 Binary files a/img/favicon/favicon-194x194.png and /dev/null differ