iOS-13-UITableViewCell的CornerRadius

时间:2019-09-23 07:12:48

标签: ios swift uitableview

我已经在其my_plots = plot_partial_dependence(my_model, features=[0, 2], # column numbers of plots we want to show X=imputed_X, # raw predictors data. feature_names=['Distance', 'Landsize', 'BuildingArea'], # labels on graphs grid_resolution=10) # num 方法中设置了UITableViewCell层的cornerRadius。它曾经在iOS 12和11上运行,但在最新版本的iOS:iOS 13上却无法运行。

init

该单元格具有边框,但是当我向左滑动(trailingSwipeActionsConfigurationForRowAt)时,该单元格会错过其边框。

如何在iOS 13中设置override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) self.layer.cornerRadius = 10 } 中的cornerRadius

1 个答案:

答案 0 :(得分:4)

请在cornerRadius的{​​{1}}中进行UITableView的修改。 Apple可能对iOS 13中的contentView进行了限制的层修改。

编辑:在UITableView的{​​{1}}属性中进行任何视图修改。在运行时,iOS在UITableView的根视图中执行其他操作。我有个问题,我无法在iOS 10的contentView单元内执行轻击操作,而我将其修复的方法是将所有内容移至UITableView内。