gpt4 book ai didi

iphone - 是否可以动态创建 UITextView?

转载 作者:行者123 更新时间:2023-12-03 18:33:27 31 4
gpt4 key购买 nike

例如:当触摸事件发生时,将创建一个 UITextView。

怎么做?

谢谢

最佳答案

您必须以编程方式执行此操作,我认为这在 Interface Builder 中是不可能的。

只需做类似的事情

UITextView *myTextView = [[UITextView alloc] init];
myTextView.text = @"some text";
//some other setup like setting the font for the UITextView...
[self addSubview:myTextView];
[myTextView sizeToFit];

在您 View 的适当方法中(例如- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event)或您的 View Controller 。

关于iphone - 是否可以动态创建 UITextView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1439077/

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