如何使用Objective C在UItableView中增加UIView高度?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Objective C在UItableView中增加UIView高度?相关的知识,希望对你有一定的参考价值。

我是ios编程的新手,我已经实现了UITableviewController。我把UIView放在UITableView里面。我在UIView里面设计了标签,文本字段和tableview。我的问题是,当我根据数组计数增加动态tableview时,我想增加我的UIView高度。我不知道该怎么做?以下是我的设计结构,

UITableViewController---          
       UIView-----               (1)
           Label---Label         (2)
           label---Label         (3)
           label---              (4)
           UItableview           (5)
           textfield             (6)
           textfield             (7)
and so on

下面我已成功增加(5)身高而且我想增加(1)身高我不知道怎么办?任何人都可以建议解决这个问题?我试过以下代码。

-(void)viewDidLayoutSubviews{


    CGFloat numberofrows=creditList.count;
    height = numberofrows*propertytable.rowHeight;
    _tableviewheight.constant = height;

    propertytable.frame =CGRectMake(propertytable.frame.origin.x,propertytable.frame.origin.y, propertytable.frame.size.width,_tableviewheight.constant);
    CGRect myviewframe=mainview.frame;
    NSLog(@"The myviewframe value is %f",myviewframe.size.height);


    mainview.translatesAutoresizingMaskIntoConstraints=YES;
    myviewframe.size.height=5000;

    mainview.frame=myviewframe;
    mainview.frame = CGRectMake(0,0,mainview.frame.size.width, 5000);
    mainview.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
    mainview.contentMode = UIViewContentModeScaleAspectFit;
[mainview layoutIfNeeded];

      }
答案

如果对象具有自动布局,请尝试以下操作:

- (void)viewDidLoad {
    self.tableView.rowHeight = UITableViewAutomaticDimension;
    self.tableView.estimatedRowHeight = 105; //Default Height
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return UITableViewAutomaticDimension;
}

以上是关于如何使用Objective C在UItableView中增加UIView高度?的主要内容,如果未能解决你的问题,请参考以下文章

如何在混合代码 Objective-C/C++ 文件(.mm 文件)中使用 PHPhotoLibrary?

如何在Objective C项目中使用ALCameraViewController库

如何使用 Objective C 在 iphone 中制作 .zip 文件?

如何在 Objective C 中使用托管对象?

如何在 Objective C 中对齐内存?

如何在c++中,调用objective-c