gpt4 book ai didi

ios - 如何在 swift 3 中将 Tableviewcell 显示为气泡?

转载 作者:行者123 更新时间:2023-12-01 17:47:26 27 4
gpt4 key购买 nike

关闭。这个问题需要更多 focused 。它目前不接受答案。












想改进这个问题?更新问题,使其仅通过 editing this post 关注一个问题。

4年前关闭。




Improve this question




我知道有图书馆可以为我做,但我不想使用任何图书馆并手动做。是否可以?

最佳答案

这实际上比看起来容易,您只需设置一个 cornerRadius为您的单元格主视图设置clipsToBounds为真。
至于左/右对齐,您可以使用两个具有固定约束的不同原型(prototype),也可以修改 Autolayout constraints以编程方式基于单元格。

对于舍入,请参见下面使用基本 UITableViewCell 的代码(你很可能会使用自己的子类,但原理是一样的):

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "myCell", for: indexPath)
cell.backgroundView?.layer.cornerRadius = 5 //set this to whatever constant you need
cell.backgroundView?.clipsToBounds = true
return cell
}

关于ios - 如何在 swift 3 中将 Tableviewcell 显示为气泡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45636286/

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