bennyguitar / CollapseClick

A collapsible list that functions like a UITableView, except you can collapse and open cells on a click. Feed it UIViews for what is shown when each cell is open. Works via delegation similar to UITableView.
MIT License
533 stars 83 forks source link

Switch README code syntax highlighting to Objective-C #2

Closed stevenpetryk closed 11 years ago

stevenpetryk commented 11 years ago

Switch the code tags to use Objective-C, not shell. This improves the readability of the README.

Before:

-(int)numberOfCellsForCollapseClick {
    return (int)newInt;
}

After:

-(int)numberOfCellsForCollapseClick {
    return (int)newInt;
}