gpt4 book ai didi

ios - 旋转按钮标题标签文字

转载 作者:搜寻专家 更新时间:2023-11-01 06:15:04 24 4
gpt4 key购买 nike

我希望按钮上的标题看起来像:

enter image description here

到目前为止,我在表格 View 单元格中所做的是:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "CellJob") as!JobPostTbleCell
cell.btnApply.titleLabel?.transform = CGAffineTransform(rotationAngle: CGFloat.pi / 2)
cell.btnApply.titleLabel?.backgroundColor = UIColor.lightGray
return cell

}

我得到这个:

enter image description here

如何实现要求的输出?

最佳答案

我在 cellForRowAt indexPath 中添加了这段代码

 cell.btnApply.titleLabel?.transform = CGAffineTransform(rotationAngle: -(CGFloat.pi / 2))
cell.btnApply.titleLabel?.textAlignment = .center
cell.btnApply.titleLabel!.numberOfLines = 1

并像这样从 Storyboard 中更改按钮的对齐方式并且它起作用了。

enter image description here

关于ios - 旋转按钮标题标签文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47052981/

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