我以编程方式创建 UITableView 并将其添加到 UIView:
编辑1
- (void)viewDidLoad
{
[super viewDidLoad];
previewTableView = [[UITableView
alloc]initWithFrame:CGRectMake(self.previewView.frame.origin.x,
self.previewView.frame.origin.y,
self.previewView.frame.size.width,
self.previewView.frame.size.height
)];
previewTableView.delegate = self;
previewTableView.dataSource = self;
previewTableView.tag = 1;
[self.previewView addSubview:previewTableView];
}
previewView 是使用 XIB 创建的。
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:
(NSIndexPath *)indexPath
{
NSLog(@"Height for row %d",tableView.tag);
if (tableView.tag == 1)
{
CGFloat height=((UIImage*)[images objectAtIndex:indexPath.row]).size.height;
NSLog(@"section: %i, image height: %f",indexPath.section,height);
return height;
}
return 80;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView.tag == 1)
return [images count];
return 10;
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"tag = %d",tableView.tag);
if (tableView.tag == 1)
{
NSLog(@"indexpath images %d %d",indexPath.row,[images count]);
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if(cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
if ([images count] > [indexPath row])
return cell;
[cell.contentView addSubview:[images objectAtIndex:[indexPath row]]];
[cell.contentView sizeToFit];
return cell;
}
该表未显示(无滚动,无行...空白视图)。事实上,NSLog 并没有被调用。(图片包含 2 个项目)。有什么建议吗?