0

我正在构建一个应用程序,让用户创建一个由标题和文本组成的“故事”。

我正在实现一个显示所有已创建故事的 tableView。到目前为止一切正常。但这是我的问题:

当用户输入的标题或文本比 tableViewCell 能够显示的更长时,该单元格根本不会显示。其他名字较短的人仍然这样做。

我正在使用单元格样式“字幕”。

如何限制单元格中显示的文本数量以及导致此错误的原因?因为即使我找到了修复它的方法,屏幕上的文本可能仍然存在问题。

这是我UITableViewController课堂上的代码:

class StoryTableViewController: UITableViewController {


override func numberOfSections(in tableView: UITableView) -> Int {
    return 1
}


override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return savedStories.count
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "myCell", for: indexPath)

    cell.textLabel?.text = savedStories[indexPath.row].title
    cell.detailTextLabel?.text = savedStories[indexPath.row].text
    return cell
}

override func viewDidLoad() {
    super.viewDidLoad()

    // Uncomment the following line to preserve selection between presentations
    // self.clearsSelectionOnViewWillAppear = false

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem()
}

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

这是界面生成器的 UI 屏幕截图:

这是界面生成器的 UI 屏幕截图

4

3 回答 3

1

您必须实现这两个委托,不要忘记将 tableView 委托和数据源与 VC 绑定,并numberOfLines = 0从情节提要中设置标签描述属性。

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath {
     return 60; // height of default cell
 }

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewAutomaticDimension; // It takes automatic height of cell
}

现在在情节提要中执行以下操作

您的视图层次结构应该是这样的

在此处输入图像描述

只检查 ViewLabelContatainer

添加一个视图并将所有标签放入其中。

标签容器约束

在此处输入图像描述

标签标题约束

在此处输入图像描述

标签 描述 约束

在此处输入图像描述

输出

在此处输入图像描述

于 2017-04-20T05:23:03.363 回答
1

您需要创建自定义 UITableViewCell。您可以使用可用的动态可调整大小的单元格自动调整单元格以适应文本长度。

IB步骤:在单元格上制作一个UILabel。不要给它任何高度限制。只需从四面八方将其固定并执行以下操作:

label.numberOfLines = 0

在 viewDidLoad 中:

self.tableView.estimatedRowHeight = 88.0 //Any estimated Height
self.tableView.rowHeight = UITableViewAutomaticDimension

不要写heightForRow:方法,但如果你想使用它,因为那里存在几个单元格,你可以返回 UITableViewAutomaticDimension 为那个特定的单元格高度。

试试这个

于 2017-04-20T05:02:14.207 回答
0

为此,您需要使用可变高度 TableViewCell

override func viewDidLoad() 
{  
    super.viewDidLoad()

    self.tableView.estimatedRowHeight = 200 // give maximum height you required
    self.tableView.rowHeight = UITableViewAutomaticDimension
}

然后在你的视图控制器中添加这个委托方法

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat 
{
    return UITableViewAutomaticDimension
}
于 2017-04-20T04:59:21.647 回答