From b689ff35597dc891a9f563b1b5f614caf52db097 Mon Sep 17 00:00:00 2001 From: Kevin Campuzano Date: Sun, 22 May 2022 16:27:38 -0500 Subject: [PATCH] fix markdown sintax on readme --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 577c958..396d82b 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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: @@ -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` @@ -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. @@ -84,7 +84,7 @@ 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. @@ -92,4 +92,4 @@ 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) \ No newline at end of file +[![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)