iOS   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了SWIFT UITableview根据内容设置autoheight – XCode – iOS大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

根据内容动态自动调整UITableView的高度. 我尝试了以下解决方案,但对我不起作用: dispatch_async(dispatch_get_main_queue()) { //This code will run in the main thread: CGRect frame = self.tableView.frame; frame.si@H_197_5@
@H_403_4@
根据内容动态自动调整UITableView的高度.
我尝试了以下解决方案,但对我不起作用:

dispatch_async(dispatch_get_main_queue()) {
        //This code will run in the main thread:
        CGRect frame = self.tableView.frame;
        frame.size.height = self.tableView.contentSize.height;
        self.tableView.frame = frame;
    }

SOURCE

@H_403_4@

解决方法

我遇到了同样的问题.我通过简单地将uITableView内容高度传递给UITabelView框架高度来解决它.

func UITableView_Auto_Height()
    {
        if(self.UITableView.contentSize.height < self.UITableView.frame.height){
            var frame: CGRect = self.UITableView.frame;
            frame.size.height = self.UITableView.contentSize.height;
            self.UITableView.frame = frame;
        }
    }

在viewController的viewDidAppear函数调用上面的函数.

override func viewDidAppear(animated: Bool) {
        UITableView_Auto_Height();
    }
@H_403_4@ @H_403_4@
@H_403_4@
@H_403_4@

大佬总结

以上是大佬教程为你收集整理的SWIFT UITableview根据内容设置autoheight – XCode – iOS全部内容,希望文章能够帮你解决SWIFT UITableview根据内容设置autoheight – XCode – iOS所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。