您好我会尝试解释我的问题:我正在使用webservices,我需要将变量或label.text提供给另一个类的webservice请求...我尝试了很多方法,但我不能找到解决方案我知道它一定很容易,但我是Objective-c的新手,所以我在原始情况下遇到问题。感谢所有帮助我的人:)。
答案 0 :(得分:1)
使用实例变量和属性。请参阅here。
在.h:
@interface YourClass : Superclass {
NSString *text;
}
@property (nonatomic, retain) NSString *text;
在.m中你必须合成它:
@implementation YourClass
@synthesize text;
现在您可以像这样设置此变量:
[instanceOfYourClass setText:someText];
得到它:
someString = [instanceOfYourClass text];
并像这样使用它(在你的实现中):
someString = [self text];