Skip to content

fix markdown sintax on readme #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ EasyTableView 2.0 - January 7, 2016
__IMPORTANT NOTE__: The API for `EasyTableView` has changed of January 6, 2016. So if you have been a consumer of `EasyTableView` prior to this date, you may find that this update breaks your existing projects.


###SUMMARY
### SUMMARY
---
This project demonstrates the use of the `EasyTableView` class. The demo is intended to be run on an iPad only, but there is no reason why `EasyTableView` could not be used on an iPhone.

Expand All @@ -26,7 +26,7 @@ EasyTableView.m
This was written before `UICollectionView` became available, but developers may still prefer to use `EasyTableView` for it’s simplicity.


###DESCRIPTION
### DESCRIPTION
---
`EasyTableView` was created to address two concerns. The first is the ability to have a table view, horizontal or vertical, that only partially fills the screen. Normally one would use `UITableViewController` but as per Apple documentation, that requires table views that fill the whole screen. `EasyTableView` addresses this problem by acting as the controller for the embedded table view, and exposes a subset of table view functionality with it's own delegate methods.

Expand All @@ -35,7 +35,7 @@ The second concern addressed by `EasyTableView` is horizontal table views. Table
So now you can create simple partial-screen table views, either vertically or horizontally, all with the same interface.


###USAGE
### USAGE
---

To understand how to use `EasyTableView`, study the code in `EasyTableViewController.m`. To create a new `EasyTableView` object, look at the methods:
Expand All @@ -47,15 +47,15 @@ To understand how to use `EasyTableView`, study the code in `EasyTableViewContro

Create a vertical scrolling table view with:

`
- (id)initWithFrame:(CGRect)frame ofHeight:(CGFloat)cellHeight;
`
```
- (id)initWithFrame:(CGRect)frame ofHeight:(CGFloat)cellHeight;
```

To create a new horizontal scrolling table view use:

`
```
- (id)initWithFrame:(CGRect)frame ofWidth:(CGFloat)cellWidth;
`
```

For even simpler setup, look to see how to use `EasyTableView` with a storyboard in `FlipsideViewController.m`

Expand All @@ -74,7 +74,7 @@ If you plan to setup an EasyTableView with multiple sections, you must implement
That's all there is to it. It is very easy to use. And yes, that is a picture of my tent!


###KNOWN LIMITATIONS
### KNOWN LIMITATIONS
---

1. A horizontal `EasyTableView` will correctly auto-resize it's overall length. However a horizontal `EasyTableView` will NOT necessarily correctly auto-resize it's height.
Expand All @@ -84,12 +84,12 @@ That's all there is to it. It is very easy to use. And yes, that is a picture of
3. Auto-layout is not supported.


###LICENSE
### LICENSE
---
`EasyTableView` is released under the New BSD License.

Copyright (c) 2010-2017, Yodel Code LLC
All rights reserved.


[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Falekseyn%2FEasyTableView.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Falekseyn%2FEasyTableView?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Falekseyn%2FEasyTableView.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Falekseyn%2FEasyTableView?ref=badge_large)