在另一个类中使用一个类 NSString ?

发布于 2024-11-07 03:11:01 字数 519 浏览 5 评论 0原文

嗨,我正在使用一个字符串到另一个类。实际上我知道我们必须设置 @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 技术交流群。

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

发布评论

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

评论(1

沙沙粒小 2024-11-14 03:11:01

因为selectionString 与selectionString 不同。你少了一个“e”。

Because selctionString isn't the same as selectionString. You're missing an 'e'.

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