@selector调用错误的方法

时间:2016-12-12 06:52:53

标签: ios objective-c nstimer

我有一个ViewController A ,并在其中viewDidLoad我有以下代码重复调用方法(在 A <中定义/强>):

NSTimer* myTimer = [NSTimer scheduledTimerWithTimeInterval: 15.0 target: self
                                                  selector: @selector(getAllNotificationDetails) userInfo: nil repeats: YES];

现在在另一个ViewController B 中,我有相同的方法。在我的ViewController A中,我导入了 B 。现在上面的代码调用 B 中的方法,这不是我想要的,我希望调用 A 中的方法。即使我的目标是self,我也不知道为什么会发生这种情况。任何帮助将不胜感激。谢谢。

0 个答案:

没有答案