PTEHorizontalTableView

Horizontal UITableView inspired by EasyTableView

View the Project on GitHub

Platform: iOS Version: 1.1.0 License: Apache 2.0 Dependency Status Build Status

Horizontal UITableView inspired by EasyTableView.

Screenshot 1 Screenshot 2

Features

Demo

A demo project is included in the repository.

Installation

Simply add pod 'PTEHorizontalTableView' to your CocoaPodsPodfile.

platform :ios, '5.0'

pod 'PTEHorizontalTableView'

Documentation

http://cocoadocs.org/docsets/PTEHorizontalTableView/

Usage

Simply implement the PTETableViewDelegate protocol:

@protocol PTETableViewDelegate <NSObject>

- (NSInteger)tableView:(PTEHorizontalTableView *)horizontalTableView
numberOfRowsInSection:(NSInteger)section;

- (UITableViewCell *)tableView:(PTEHorizontalTableView *)horizontalTableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath;

@optional

- (NSUInteger)numberOfSectionsInTableView:(PTEHorizontalTableView*)horizontalTableView;

- (void)tableView:(PTEHorizontalTableView *)horizontalTableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

- (UIView*)tableView:(PTEHorizontalTableView*)horizontalTableView
viewForHeaderInSection:(NSInteger)section;

- (UIView*)tableView:(PTEHorizontalTableView*)horizontalTableView
viewForFooterInSection:(NSInteger)section;

- (CGFloat)tableView:(PTEHorizontalTableView *)horizontalTableView
widthForCellAtIndexPath:(NSIndexPath *)indexPath;

@end

License

Copyright 2014-2017 PTEz.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.