Skip to content

Instantly share code, notes, and snippets.

View Amztion's full-sized avatar

Liang Zhao Amztion

View GitHub Profile
@Amztion
Amztion / TableViewController.m
Last active March 3, 2017 06:23
在点击 UITableViewCell 时展开、收缩表格
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView setAllowsMultipleSelection:YES]; //允许选择多行
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([tableView indexPathsForSelectedRows].count) {