0

我以编程方式创建 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 个项目)。有什么建议吗?

4

2 回答 2

3

您必须在以编程方式创建时指定表格视图的框架。前任:

tab2 = [[UITableView alloc]initWithFrame:CGRectMake(0, 540, 768, 600)];

如果你想让表格占据全屏。

tab = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain];
于 2013-09-12T12:38:20.817 回答
2

代替

previewTableView = [[UITableView alloc] init]; 

利用:

previewTableView = [[UITableView alloc] initWithFrame:CGRectMake(101, 45, 100, 416)];

您的 numberOfRows 必须返回大于 0。

于 2013-09-12T12:38:27.273 回答