我有一个带静态单元格的tableView。如果其中一个单元格不在视图中,则单元格会消失,所有内容都会重叠。这是一个截图:
这是相关的表视图代码:
- (BOOL) tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath {
return NO;
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 3;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (section == 0) {
return 1;
} else if (section == 1) {
return 4;
} else if (section == 2) {
return 3;
}
return 0;
}
由于