我在.h
中有这段代码 @interface AppDelegate : NSObject <NSApplicationDelegate>{
IBOutlet NSPathControl *pathControl;
}
这是在.m
- (IBAction)choix:(id)sender {
NSString *string=[[pathControl URL] path];
NSLog (@"%@", string);
}
当我点击NSPathControl并选择一个目录时。 NSlog显示
2013-01-05 19:31:51.947 Apps[9269:303] (null)
我是初学者,我不知道如何选择路径字符串(而不是null)? 谢谢你的帮助。