iPhone 的什么代码可以让用户通过单击某些按钮来更改文本视图中的字体大小?

发布于 2024-11-15 13:18:22 字数 67 浏览 2 评论 0原文

如何为 iPhone 实现代码,以便用户可以通过单击某些按钮来更改文本视图中的字体大小? (UITextView的用法)

How do I implement code for the iPhone so the user can change the font size in text view by clicking some buttons? (UITextView usage)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉墨 2024-11-22 13:18:22

将按钮连接到 IBActions。使用 UITextView (textView) 和当前字体大小 (fSize) 的插座创建界面。

在 IBAction 中放置以下代码:

- (IBAction) fontPlusDown {
    fSize++;
    UIFont *newFont = [UIFont systemFontOfSize:fSize];
    [textView setFont:newFont];
}

调整减少代码 (fSize--)。

Wire up the buttons to IBActions. Create your interface with an outlet for your UITextView (textView) and the current font size (fSize).

Within the IBAction put this code:

- (IBAction) fontPlusDown {
    fSize++;
    UIFont *newFont = [UIFont systemFontOfSize:fSize];
    [textView setFont:newFont];
}

Adjust the code for reduction (fSize--).

围归者 2024-11-22 13:18:22

点击按钮时使用 [textView setFont:[UIFont fontWithSize:yourdesiredSize]]

Use [textView setFont:[UIFont fontWithSize:yourdesiredSize]] when you tap on a button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文