CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

BWHorizontalTableView 1.0.1

BWHorizontalTableView 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2016

Maintained by BurrowsWang.



  • By
  • BurrowsWang

BWHorizontalTableView is an efficient horizontal table view based on Objective-c with same usage and interface as UITableView.

How To Use

API documentation is available at CocoaDocs - BWHorizontalTableView.

Sample project can be found here. If you know how to use UITableView in your iOS project, you already know how to use BWHorizontalTableView.

First of all, you should provide dataSource and delegate of the horizontal table view.

BWHorizontalTableView *tableView = [[BWHorizontalTableView alloc] init];
tableView.frame = rect;
tableView.dataSource = your-data-source;
tableView.delegate = your-delegate;

Your data source should conforms to BWHorizontalTableViewDataSource and implement the following methods:

- (NSInteger)numberOfSectionsInHorizontalTableView:(BWHorizontalTableView *)tableView;

- (NSInteger)horizontalTableView:(BWHorizontalTableView *)tableView
        numberOfColumnsInSection:(NSInteger)section;

- (BWHorizontalTableViewCell *)horizontalTableView:(BWHorizontalTableView *)tableView
                          cellForColumnAtIndexPath:(NSIndexPath *)indexPath;

Your delegate object should conforms to BWHorizontalTableViewDelegate and implement the methods defined in protocol BWHorizontalTableViewDelegate according to your needs.

- (CGFloat)horizontalTableView:(BWHorizontalTableView *)tableView
     widthForColumnAtIndexPath:(NSIndexPath *)indexPath;

- (void)horizontalTableView:(BWHorizontalTableView *)tableView
 didSelectColumnAtIndexPath:(NSIndexPath *)indexPath;

Installation

Other Ways

  • Copying all the files into your project
  • Importing the project as a dynamic framework, PS: ADD FRAMEWORK TO Embedded Binaries
  • Importing the project as a static library, PS: ADD -ObjC TO BUILD SETTING Other Linker Flags

License

All source code is licensed under the MIT License.