質問があります。何かわからないと思います。
変数とメソッドを含むクラスを取得しました。
- AppDelegate.h/.m
- WifMon.h./m <-- 上記のもの
- ViewController.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
}
しかし、これは機能していません。アクション メソッド内の「テスト」インスタンスにアクセスできません。
しかし、なぜ?