ViewControllerクラスからのインポート中にNSStringがNULLとして返される
文字列変数を第1クラスから第2クラスにインポートしたかったのですが、インポートしませんでした
参考までに、以下の適合コードを見つけてください
ViewController:
@interface ViewController : UIViewController{
NSString * string;
@property(nonatomic, retain)NSString * string;
@end
@implementation ViewController
@synthesize string;
-(IBAction) login:(id) sender{
string = @"HI";
}
class2:
#import"ViewController.h"
@interface class2 : UIViewController{
ViewController * vc;
NSString * string1;
@property(nonatomic, retain)NSString * string1;
@end
@implementation ViewController
@synthesize string1;
-(IBAction) login:(id) sender{
NSLog(@"%@",vc.string);
@end
}
NSLogがNULLを返しているところ!!!!
親切に助けてください!前もって感謝します