字符串值无法分配给 iPhone 中的字符串变量?

发布于 2024-10-15 03:31:40 字数 506 浏览 0 评论 0原文

在我的应用程序中,我获取 UITextField 值并修剪它,然后分配给 Appdelegate 中声明的字符串变量。它分配给appdelegate变量并且工作良好,有时它不分配给appdelegate变量。(该值在另一个视图中使用,因此在appdelegate中声明)。请帮忙...

NSString *txtTemp=[NSString stringWithFormat:@"%@",[txtName.text  stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];
txtName.text=txtTemp;
[self appDelegate].customSearchQuery=[NSString stringWithFormat:@"%@",txtTemp];

NSLog(@"--appDelegate.customSearchQuery =%@",appDelegate.customSearchQuery);

In my application, I take a UITextField value and trim it and assign to a string Variable declared in an Appdelegate. It assigns to a appdelegate variable and works well, sometimes It does not assign to the appdelegate variable.(This value is used in another view,so declared in appdelegate). Plz help...

NSString *txtTemp=[NSString stringWithFormat:@"%@",[txtName.text  stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];
txtName.text=txtTemp;
[self appDelegate].customSearchQuery=[NSString stringWithFormat:@"%@",txtTemp];

NSLog(@"--appDelegate.customSearchQuery =%@",appDelegate.customSearchQuery);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撕心裂肺的伤痛 2024-10-22 03:31:40

这很可能是内存管理问题。
NSString 创建一个自动释放的对象。如果您想在上面显示的方法之外使用它,则必须保留它。 那样 delcare

@property (nonatomic, retain) NSString *customSearchQuery; 

最简单的事情是像Appdelegate.h 中 。那应该可以解决问题。

在 appdelegate 的 dealloc 方法中,您需要释放它 - 否则您会泄漏 NSString;对于上面的声明,您将添加

customSearchQuery = nil;

This is most probably a memory management problem.
NSString creates an autoreleased object. You will have to retain it if you want to use it outside the method you showed above. The easiest thing is to delcare as

@property (nonatomic, retain) NSString *customSearchQuery; 

in your Appdelegate.h. That should do the trick.

In the dealloc-method of the appdelegate, you'll need to release it - otherwise you leak the NSString; with the declaration above, you'll add

customSearchQuery = nil;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文