【发布时间】:2022-09-24 16:54:12
【问题描述】:
private func updateViewFromModel() {
for index in cardButtons.indices {
let button = cardButtons[index]
let card = game.cards[index]
if card.isFaceUp {
button.setTitle(emoji(for: card), for: .normal)
button.titleLabel?.font = UIFont.systemFont(ofSize: 50)
button.backgroundColor = .lightGray
} else {
button.setTitle(\"\", for: .normal)
button.backgroundColor = card.isMatched ? .clear : .systemIndigo
}
}
}
谁能告诉我这段代码有什么问题? IB 中的标题为空。我成功设置了标题。但字体大小没有改变。
-
你的 XCode 版本是多少?