有我的 tableView 代码,我正在使用一个 costom 单元:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *IOsCell = @"IOsCell";
IOsCellViewController *cell = [tableView dequeueReusableCellWithIdentifier:IOsCell];
if ( cell == nil )
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"IOsCellViewController" owner:self options:nil];
cell=[nib objectAtIndex:0];
}
我的成本单元格视图中有一些标签:
我正在努力的部分就像图片一样。
在 UITableView 的底部有一个单元格视图。
我不知道这怎么会发生以及如何解决这个问题。
我希望我足够清楚。任何帮助是极大的赞赏。
谢谢。