Horizontal UITableView inspired by EasyTableView.
- PTEHorizontalTableView wraps a
UITableView
rotated horizontally using aCGAffineTransform
whose cells' content views are rotated back vertically. PTETableViewDelegate
very similar to the standardUITableViewDelegate
with some method name such astableView:widthForCellAtIndexPath:
.- Support for standard scroll indicators, headers and footers.
- Full Interface Builder support including creating Static/Prototype Cells using Storyboards.
A demo project is included in the repository.
Simply add pod 'PTEHorizontalTableView'
to your CocoaPods' Podfile.
platform :ios, '8.0'
use_frameworks!
pod 'PTEHorizontalTableView'
http://cocoadocs.org/docsets/PTEHorizontalTableView/
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
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.