Skip to content

Commit

Permalink
Fixes favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
flovilmart committed Apr 8, 2017
1 parent c740f9b commit ab063aa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _includes/ios/in-app-purchases.md
Expand Up @@ -150,7 +150,7 @@ if let product = productQuery.findObjects.lastObject as? PFProduct {}

## PFProductTableViewController

<img src="https://parse.com/images/docs/products_table_screenshot.png" style="max-width: 200px"/>
<img src="{{ site.baseUrl }}/assets/images/products_table_screenshot.png" style="max-width: 200px"/>

`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.

Expand Down
8 changes: 4 additions & 4 deletions _includes/ios/user-interface.md
Expand Up @@ -528,7 +528,7 @@ class SimpleTableViewController : PFQueryTableViewController {
}
</code></pre>

<img src="https://parse.com/images/docs/todo_view.png" style="max-width:200px"/>
<img src="{{ site.baseUrl }}/assets/images/todo_view.png" style="max-width:200px"/>

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.

Expand Down Expand Up @@ -576,7 +576,7 @@ override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath:
}
</code></pre>

<img src="https://parse.com/images/docs/images_table.png" style="max-width:200px"/>
<img src="{{ site.baseUrl }}/assets/images/images_table.png" style="max-width:200px"/>

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.

Expand All @@ -600,7 +600,7 @@ Several methods are exposed that are called at major events during the data life

### Pagination

<img src="https://parse.com/images/docs/pagination.png" style="max-width:200px"/>
<img src="{{ site.baseUrl }}/assets/images/pagination.png" style="max-width:200px"/>

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.

Expand All @@ -610,7 +610,7 @@ Pagination is turned on by default. If you want to turn it off, simply set `pagi

### Pull to Refresh

<img src="https://parse.com/images/docs/pull_to_refresh.png" style="max-width:200px"/>
<img src="{{ site.baseUrl }}/assets/images/pull_to_refresh.png" style="max-width:200px"/>

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.

Expand Down
Binary file added img/favicon/favicon-160x160.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/favicon/favicon-192x192.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/favicon/favicon-194x194.png
Binary file not shown.

0 comments on commit ab063aa

Please sign in to comment.