在tableviewcell中以编程方式创建的视图中的问题

时间:2014-10-20 18:21:36

标签: ios xcode uitableview view uiviewcontroller

我正在实现一个包含UIViewController的{​​{1}},我正在尝试添加以TableView编程方式创建的视图,滚动视图隐藏并且工作奇怪。 任何人都可以帮助我

TableViewCell

2 个答案:

答案 0 :(得分:0)

更改

[cell addSubview:BottomView];

[cell.contentView addSubview:BottomView];

答案 1 :(得分:0)

更改您的BottomView框架,可能会显示

    UIView *BottomView=[[UIView alloc] initWithFrame:CGRectMake(0, 10 , self.view.frame.size.width, 50)];
    BottomView.backgroundColor=[UIColor redColor];
   [cell addSubview:BottomView];

因为您将BottomView的高度设置为self.view.frame.size.height,这将使您的视图超出单元格的框架,因此更改它将起作用。