摘要:
阅读全文
摘要:
#pragma mark - UITableView代理方法- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ // 1. 取出用户点击的cell UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; // 2. 判断cell.tag,如果==1,跳转 if (cell.tag == 1) { [selfperformSegueWithIdentifier:@"E... 阅读全文