Skip to content

Commit

Permalink
description
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfusedVorlon committed Feb 7, 2017
1 parent 7bb56cf commit baacfb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions HSTableView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@ Pod::Spec.new do |s|

s.name = "HSTableView"
s.version = "0.1.0"
s.summary = "A better HSTableView using objects, blocks and no delegates"
s.summary = "A simpler, more elegant UITableView using objects, blocks and no delegates"

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
A better UITableView. Rows are managed by objects. Things happen with blocks. Your whole table is declared up front with no need for delegates
A simpler, more elegant UITableView. Rows are managed by objects. Things happen with blocks.
Your whole table is declared up front with no need for delegates
The table view uses a responder chain approach to provide settings. Any setting can be set at the row level, the section level or the table level.
Expand All @@ -35,7 +37,7 @@ Blocks are used for tap handlers, delete handlers, etc.
Default (coloured) accessories are supported
HSTableView is suitable for situations where there is a known finite number of rows (although the number can change). It doesn’t support infinite scrolling tables (you’ll have to use delegates for that).
HSTableView is suitable for situations where there is a known finite number of rows (although the number can change). It doesn’t support infinite scrolling tables (you’ll have to use UITableView and delegates for that!)
DESC

s.homepage = "https://github.com/ConfusedVorlon/HSTableView"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# HSTableView

A better UITableView. Rows are managed by objects. Things happen with blocks.
A simpler, more elegant UITableView. Rows are managed by objects. Things happen with blocks.

Your whole table is declared up front with no delegates.

The table view uses a responder chain approach to provide settings. Any setting can be set at the row level, the section level or the table level.

This allows simple configuration at the table level, and easy customisation at the row level.

Blocks are used for tap handlers, delete handlers, etc.
Blocks are used for tap handlers, delete handlers, styling, etc.

Default (coloured) accessories are supported

HSTableView is suitable for situations where there is a known finite number of rows (although the number can change).
It doesn’t support infinite scrolling tables (you’ll have to use delegates for that).
It doesn’t support infinite scrolling tables (you’ll have to use UITableView and delegates for that!).

##Installation

Expand Down

0 comments on commit baacfb7

Please sign in to comment.