gpt4 book ai didi

iphone - 如何使 UITextView 像 Notes 应用程序一样使用文本展开

转载 作者:行者123 更新时间:2023-12-03 20:37:12 26 4
gpt4 key购买 nike

如何使 UITextView 展开并显示其中的文本?

最佳答案

你可以试试这个...

UITextView *textView; // your UITextView
NSString *text; // the text that you want to place in the UITextView
UIFont *textViewFont; // the font that you are using for your UITextView

CGSize size = {255,2000.0f}; //The default width, and max height you want to use

CGSize newSize = [text sizeWithFont:textViewFont
constrainedToSize:size lineBreakMode:UILineBreakModeWordWrap];

textView.frame = CGRectMake(0,0,newSize.width, newSize.height);

关于iphone - 如何使 UITextView 像 Notes 应用程序一样使用文本展开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2097850/

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