gpt4 book ai didi

ios - 文本字段仅返回 1 个字母或 NULL 的奇怪问题

转载 作者:行者123 更新时间:2023-11-29 12:52:23 26 4
gpt4 key购买 nike

我正在对我的应用程序进行 Beta 测试,一位使用 iphone 4s 的用户遇到一个问题,即在他的搜索框中输入查询后,查询运行时每次都返回“null”,除非他只是输入字母 ' A'。我应该注意到,这在我测试过的其他设备上工作得很好:模拟器和 iphone 5 以及 iphone 5s。

相关代码如下:

在第一个 ViewController.m 中

- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"search_segue"]) {
SearchController* searchController = [segue destinationViewController];
searchController.query = self.searchQuery.text;
}
}

在第二个 ViewController.m 中

- (void)viewDidLoad {
[super viewDidLoad];

NSLog(@"%@", _query);

}

最佳答案

猜想一下:

我将变量设置为:

(weak, nonatomic)

并将它们更改为:

(strong, nonatomic)

然后就解决了。

关于ios - 文本字段仅返回 1 个字母或 NULL 的奇怪问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22104653/

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