在另一个类中使用一个类 NSString ?
嗨,我正在使用一个字符串到另一个类。实际上我知道我们必须设置 @property 并合成那些 NSString 对象。我再次使用它没有给出值
我以这种方式编写代码:
/*IN One.h*/
NSString *selectionString;
@property(nonatomic,retain)NSString *selectionString;
/*In One.m*/
tableViewDidSelect:
selctionString=[tableArray objectAtIndex:indexPath.row];
viewDidLoad:
selctionString=[[NSString alloc]init];
/*In Two.m*/
One *on1=[[One alloc]init];
nameLabel.text=on1.selectionString;
但它给出了 null 这里的标签没有显示任何内容,为什么有任何问题,任何人都可以帮助我,请
提前致谢。
Hi i am using one string to another class. Actually i know we have to set @property and synthsize those NSString Object. I used again it does not give value
I wrote the code like thts way:
/*IN One.h*/
NSString *selectionString;
@property(nonatomic,retain)NSString *selectionString;
/*In One.m*/
tableViewDidSelect:
selctionString=[tableArray objectAtIndex:indexPath.row];
viewDidLoad:
selctionString=[[NSString alloc]init];
/*In Two.m*/
One *on1=[[One alloc]init];
nameLabel.text=on1.selectionString;
But it gives null
Here lable displays nothing why is any problems can any one help me please
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为selectionString 与selectionString 不同。你少了一个“e”。
Because selctionString isn't the same as selectionString. You're missing an 'e'.