字符串值无法分配给 iPhone 中的字符串变量?
在我的应用程序中,我获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很可能是内存管理问题。
NSString 创建一个自动释放的对象。如果您想在上面显示的方法之外使用它,则必须
保留
它。 那样 delcare最简单的事情是像Appdelegate.h 中 。那应该可以解决问题。
在 appdelegate 的 dealloc 方法中,您需要释放它 - 否则您会泄漏 NSString;对于上面的声明,您将添加
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 asin 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