gpt4 book ai didi

ios - 如何在 Swift 中为动态类型文本样式设置标题、副标题、正文、脚注和字幕字体?

转载 作者:IT王子 更新时间:2023-10-29 05:22:36 28 4
gpt4 key购买 nike

我正在研究 Using Text Kit to Manage Text in Your iOS Apps教程。它是为 Objective C 编写的,但我想无论如何我都会尝试使用 Swift 来完成它。

但是,当我看到下面的代码时,我不知道如何使用 Swift 为 UITextView 设置标题和其他样式。这是 objective-c 代码:

- (IBAction)applyHeadlineStyle:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]];
}

- (IBAction)applySubHeadlineStyle:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleSubheadline]];
}

- (IBAction)applyBodyStyle:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleBody]];
}

- (IBAction)applyFootnoteStyle:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleFootnote]];
}

- (IBAction)applyCaption1Style:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleCaption1]];
}

- (IBAction)applyCaption2Style:(id)sender {
[_textView setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleCaption2]];
}

我试过了

textView.setFont =
textView.preferredFontForTextStyle =

不过,这些似乎都不起作用,而且我找不到关于 SO 的任何 Swift 答案。

最佳答案

This tutorial有一些代码示例展示了如何做到这一点。

// headline
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.headline)

// subheadline
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.subheadline)

// body
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.body)

// footnote
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.footnote)

// caption 1
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.caption1)

// caption 2
textView.font = UIFont.preferredFont(forTextStyle: UIFont.TextStyle.caption2)

另见

关于ios - 如何在 Swift 中为动态类型文本样式设置标题、副标题、正文、脚注和字幕字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28735513/

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