0

我正在尝试使用 ViewController 上的方法从 AppDelegate.m 访问在 ViewController.m 中创建的数组。当我尝试在 AppDelegate.m 中发送消息时,XCode 给了我错误,

“没有已知的选择器类方法......”

在 ViewController.h 中:

-(NSMutableArray *)getButtonArray;

在 ViewController.m 中:

- (NSMutableArray *)getButtonArray;
{
    NSMutableArray *buttonArray = [[NSMutableArray alloc] init];

    for (ElementButton *button in [self.view subviews]) {
        [buttonArray addObject:button];
    }
    return buttonArray;
}

在 AppDelegate.m 中:

NSMutableArray *buttonArray = [ViewController getButtonArray];

我不明白为什么我不能在 ViewController 上调用这个方法,因为我已经在它的类文件中声明了它。如果由于某种原因这是不允许的,还有其他方法可以达到同样的效果吗?

4

1 回答 1

2

getButtonArray是一个实例方法。因此,您需要为其创建实例。

ViewController *controller = [[ViewController alloc] init];
NSMutableArray *buttonArray = [controller getButtonArray];
于 2013-08-06T16:59:32.390 回答