gpt4 book ai didi

swift - TableViewCell 中的动态高度不起作用

转载 作者:行者123 更新时间:2023-11-30 14:10:49 27 4
gpt4 key购买 nike

我今天花了六个多小时研究并尝试创建动态单元,但没有成功。我也找到了一些很棒的教程。我做错了什么,希望有人能告诉我什么。

我的应用: table 开始是空的。单击添加按钮会显示一个模态 VC,其中有两个文本输入字段(标题/描述)。该数据被传回表。主 VC 中的展开方法重新加载表数据。

问题:如果单元格的描述部分超过一行,它就会被截断。

这是我的主视图 Controller 中的代码,其中包含表格:

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

//***** ----- ***** ------ ***** ----- ***** ----- *****
//Initial Setup
//***** ----- ***** ------ ***** ----- ***** ----- *****

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

}

override func viewDidAppear(animated: Bool) {
tableView.reloadData()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

//Automatic table reload upon unwind
@IBAction func unwindToMain(segue: UIStoryboardSegue) {
//RW's code for dynamic cell height
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 80.0

tableView.reloadData()
}

//***** ----- ***** ------ ***** ----- ***** ----- *****
//Functions
//***** ----- ***** ------ ***** ----- ***** ----- *****

//Swipe to delete task cell
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if(editingStyle == UITableViewCellEditingStyle.Delete) {
taskMgr.tasks.removeAtIndex(indexPath.row)
tableView.reloadData()
}
}



//***** ----- ***** ------ ***** ----- ***** ----- *****
//Table View & Cell Setup
//***** ----- ***** ------ ***** ----- ***** ----- *****

//Tells the table how many rows it should render
//*Looks to the taskMgr to count tasks, creates equal # of rows
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return taskMgr.tasks.count
}

//Creates the individual cells. If the above function returns 3, this runs 3 times
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "BasicCell")

tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 80.0

cell.textLabel?.text = taskMgr.tasks[indexPath.row].name
cell.detailTextLabel?.text = taskMgr.tasks[indexPath.row].desc

return cell
}

}

我的模式/编辑器 View 中的代码:

class EditorView: UIViewController, UITextFieldDelegate {

@IBOutlet var txtTask: UITextField!
@IBOutlet var txtDesc: UITextView!

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}



//***** ----- ***** ------ ***** ----- ***** ----- *****
//Keyboard Functionality
//***** ----- ***** ------ ***** ----- ***** ----- *****

//Dismisses keyboard upon tapping the return key
func textFieldShouldReturn(textField: UITextField) -> Bool{
textField.resignFirstResponder()
return true
}

//Dismisses keyboard upon touch outside text boxes
override func touchesBegan(touches: Set<NSObject>, withEvent event: UIEvent) {
self.view.endEditing(true)
}

//***** ----- ***** ------ ***** ----- ***** ----- *****
//Code to run upon Editor being dismissed
//***** ----- ***** ------ ***** ----- ***** ----- *****

//Actions performed upon tapping the 'Finish' button
@IBAction func dismissEditorView(sender: AnyObject) {

//Calls a previously written function to append textfield input to the table array
taskMgr.addTask(txtTask.text, desc: txtDesc.text)

//Dismisses the EditorView
dismissViewControllerAnimated(true, completion: nil)

}
}

我的任务管理器文件包含将新项目附加到表的功能:

import UIKit

//This has global scope!!
var taskMgr: TaskManager = TaskManager()

struct task {
var name = "Name TBD"
var desc = "Desc TBD"
}

class TaskManager: NSObject {

var tasks = [task]()

func addTask(name: String, desc: String){
tasks.append(task(name: name, desc: desc))
}
}

我引用过的教程:

http://natashatherobot.com/ios-8-self-sizing-table-view-cells-with-dynamic-type/

http://www.raywenderlich.com/87975/dynamic-table-view-cell-height-ios-8-swift

http://coding.tabasoft.it/ios/ios8-self-sizing-uitableview-cells/

http://useyourloaf.com/blog/2014/08/07/self-sizing-table-view-cells.html

我认为我做对的事情:

-表格已添加到 View ,原型(prototype)单元已添加到表格

-添加到单元格的两个标签。添加了自动布局。顶部标签约束是针对容器的(前导、尾随和顶部)。底部约束是第二个标签。底部标签具有从顶部到第二个标签,然后是用于前导、尾随和底部的容器。

-顶部标签具有 751 个抗压缩和内容拥抱优先级。底部标签对于所有四个标签都有 750 优先级。

- 两个标签的首选宽度均设置为自动。未选中显式

最佳答案

问题是您在创建 UITableViewCell 之后设置 .rowHeight.estimatedRowHeight 。将以下行移至 viewDidLoad() 中:

tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 80.0

关于swift - TableViewCell 中的动态高度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31792276/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com