YStaticContentTableView
supports iOS 6 and up.
YStaticContentTableView is available through CocoaPods(http://cocoapods.org). To install it, simply add the following line to your Podfile:
pod "YStaticContentTableView"
这个一个添加section和cell到你的UITableView上的简单例子,需要把你的代码写在控制器的,viewDidLoad
方法里。把tableView开启静态表格模式[self.tableView enableStaticTableView]
,
这里你可能需要引入头文件YStaticContentTableView.h
。你可以和平时一样配置UITableViewCell
,当然我们也提供YStaticContentTableViewCellExtraInfo
对象来设置Cell的样式和复用ID。
YStaticContentTableViewSection
允许你来设置诸如Section标题等。
正如你看到的我们还有一个不错的whenSelected
block,这允许去写一些代码当我们点击cell时去运行,一个好的例子比如:push 一个 UIViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView y_enableStaticTableView];
__weak typeof(self) weakSelf = self;
[self.tableView addSection:^(YStaticContentTableViewSection *section, NSUInteger sectionIndex) {
[section addCell:^(YStaticContentTableViewCellExtraInfo *staticContentCell, UITableViewCell *cell, NSIndexPath *indexPath) {
staticContentCell.reuseIdentifier = @"UIControlCell";
staticContentCell.tableViewCellSubclass = [YCustomCell class];
YCustomCell *customCell = (YCustomCell *)cell;
[customCell.btn setTitle:[NSString stringWithFormat:@"cell - %zd",i] forState:UIControlStateNormal];
[customCell.btn addTarget:weakSelf action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
[customCell.btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];\
} whenSelected:^(NSIndexPath *indexPath) {
[[[UIAlertView alloc] initWithTitle:@"提示" message:[NSString stringWithFormat:@"click - %zd",indexPath.row] delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil] show];
[weakSelf.tableView deselectRowAtIndexPath:indexPath animated:YES];
}];
}];
}
这个行为就像addCell:
除了这些,你还可以加上是否需要动画的设置
[self.tableView insertCell:^(YStaticContentTableViewCellExtraInfo *staticContentCell, UITableViewCell *cell, NSIndexPath *indexPath) {
//config cell
} whenSelected:^(NSIndexPath *indexPath) {
//TODO
} atIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES];
和上面一样,除了这些我们需要把我们的代码放在beginUpdates
和endUpdates
,然后保留我们所有UITableView
的构建方式,而且还是使用不错,方便的语法。
[self.tableView beginUpdates];
for (NSInteger i = 0; i < 99; i++) {
[self.tableView insertCell:^(YStaticContentTableViewCellExtraInfo *staticContentCell, UITableViewCell *cell, NSIndexPath *indexPath) {
//config cell
} whenSelected:^(NSIndexPath *indexPath) {
//TODO
} atIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES];
}
[self.tableView endUpdates];
Lael, codekami@qq.com
YStaticContentTableView is available under the MIT license. See the LICENSE file for more info.