gpt4 book ai didi

iphone - UITextView.text 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:58 24 4
gpt4 key购买 nike

你好,我正在学习 iOS 编程。

我在使用 UITextView 时遇到了麻烦。

我做了一个项目并打开viewController.xib

我在 UISearchBar、UITextView 和 UILabel 中拖动

我的 viewController 是跟随 UISearchBarDelegate

我想更改 textView.text 的内容,但它没有。

这是我的代码。

-(void)viewDidLoad
{
[super viewDidLoad];
self.mySearchbar.delegate = self;
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
[searchBar resignFirstResponder];
self.myLabel.text = @"hoho";
self.myTextview.text = @"hoho";
}

当我点击搜索栏并输入任何字符并返回时,

myLabel 的文本设置为 hoho。

但 myTextview.text 没有设置。没有影响。

这是为什么呢??我很困惑..请帮助我

最佳答案

您是否在 Interface Builder 中链接了 Outlet?在 IB 中,单击 File's Owner,在右侧 Pane 中选择 Outlets,将 myTextview 链接到您放置在 View 上的 UITextview?

此外,由于您正在调用“self”,我假设您在 .h 文件中为 myTextview 创建了一个属性作为 IBOutlet?

关于iphone - UITextView.text 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10201857/

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