iPhone 的什么代码可以让用户通过单击某些按钮来更改文本视图中的字体大小?
如何为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将按钮连接到 IBActions。使用 UITextView (
textView
) 和当前字体大小 (fSize
) 的插座创建界面。在 IBAction 中放置以下代码:
调整减少代码 (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:
Adjust the code for reduction (fSize--).
点击按钮时使用
[textView setFont:[UIFont fontWithSize:yourdesiredSize]]
。Use
[textView setFont:[UIFont fontWithSize:yourdesiredSize]]
when you tap on a button.