这个项目是模仿 WeChat 封装的,快速构建 TableView,适用于有大量 Static Cell 的场景。
API 完全模仿,代码的实现靠逆向猜出来,我估计相似度有 80%+ 😂。
- Fit iPad
- URL Cell
- Wiki
- ...
- Add
pod 'PPTableView', :git=> 'https://github.com/DSKcpp/PPTableView.git'toPodfile - Run
pod install - # import "PPTableView.h"
Detail see `PPTableView.xcodeproj
- (void)viewDidLoad
{
[super viewDidLoad];
_tableViewInfo = [[PPTableViewInfo alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
[self.view addSubview:[_tableViewInfo getTableView]];
} PPTableViewCellInfo *normalCellInfo = [PPTableViewCellInfo normalCellForSel:@selector(cellInfo:)
target:self
title:@"NormalCell"
rightValue:@"right"
imageName:@"testImage"
accessoryType:UITableViewCellAccessoryDisclosureIndicator];PPTableViewSectionInfo *sectionInfo = [PPTableViewSectionInfo sectionInfoHeader:@"Normal"];
[sectionInfo addCell:normalCellInfo];
[_tableViewInfo addSection:sectionInfo];This project requires iOS6.0+.
MIT