gpt4 book ai didi

ios - 为表格 View 单元格添加自定义字体

转载 作者:行者123 更新时间:2023-11-28 14:47:40 25 4
gpt4 key购买 nike

我想在我的应用程序中添加自定义字体,所以我将其添加到此处,就像我对其他标签所做的那样。

let question = QuestionController.questionsList[questionIndex]
cell.nameLabel.text = question.answers?[indexPath.row]
cell.nameLabel.numberOfLines = 0
cell.nameLabel.lineBreakMode = .byWordWrapping
cell.nameLabel.font = UIFont(name: "USIS 1949", size, 25)

我无法让它用于表格单元格中的标题/行。相反,我有这个错误:

Cannot invoke initializer for type 'UIFont' with an argument list of type '(name: String, (UIContentContainer, CGSize) -> CGSize, Int)'

有没有简单的解决方法?我是否在错误的部分包含了字体?

最佳答案

试试这个:

let question = QuestionController.questionsList[questionIndex]
cell.nameLabel.text = question.answers?[indexPath.row]
cell.nameLabel.numberOfLines = 0
cell.nameLabel.lineBreakMode = .byWordWrapping
cell.nameLabel.font = UIFont(name: "USIS 1949", size: 25)

关于ios - 为表格 View 单元格添加自定义字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50119894/

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