gpt4 book ai didi

ios - 更改 tableView 分隔符插入

转载 作者:可可西里 更新时间:2023-11-01 06:17:55 36 4
gpt4 key购买 nike

我在自定义我的手机时遇到了一个小问题;

enter image description here

如您所见,分隔线没有到达单元格的左边界,我想这样做。我找到了这些:

谁能帮我翻译成swift代码?

最佳答案

用于在 Swift 中转换答案(Separator lines for UITableViewCellStyleSubtitle cells not taking the full width)

enter image description here

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("yourcell") as! UITableViewCell

if (cell.respondsToSelector("setPreservesSuperviewLayoutMargins:")){
cell.layoutMargins = UIEdgeInsetsZero
cell.preservesSuperviewLayoutMargins = false
}
}

通过检查版本号:

let floatVersion = (UIDevice.currentDevice().systemVersion as NSString).floatValue

if (floatVersion > 8.0){
cell.layoutMargins = UIEdgeInsetsZero
cell.preservesSuperviewLayoutMargins = false
}

关于ios - 更改 tableView 分隔符插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32178682/

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