我有个问题。我想我不明白一些事情。
我有一个带有变量和方法的类。
- AppDelegate.h/.m
- WifiMon.h./m <-- 上面提到的那个
- 视图控制器.h./m
所以现在我在我的 ViewController.m 中创建了一个 WifMon 的实例(包括 WifMon 的标头。
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
WifMon *test = [[WifMon alloc] initWithData:"google.de" withPort:443];
}
不,我有一个按钮,想开始我的“dynCheck”方法。
- (IBAction)startCheck:(id)sender {
//start dynCheck here
[test dynCheck]; //this isn't working
}
但这行不通。我无法在操作方法中访问我的“测试”实例。
但为什么?