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

时间:2011-05-13 04:22:38

标签: iphone-sdk-3.0 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 这里标签显示没有任何问题,为什么任何人都可以帮助我

先谢谢。

1 个答案:

答案 0 :(得分:0)

因为selctionString与selectionString不同。你错过了'e'。