0

我有一个返回 NSMutableArray 的方法。我从另一个类调用此方法,我想知道如何将返回的 NSMutableArray 放入调用它的类中的接收对象中。

我的班级.m

- (NSMutableArray *)getMutableArray
{
    // Do some stuff

    return myMutableArray
}

调用类.m

- (void)getMeMyMutableArray {

  // not really sure what to do here.. but something like.....

  // initialize class
  myClass *mc = [[myClass alloc] init];

  // call myClass method
  [mc getMutableArray]; // how do I get the returning value into a mutableArray in this class?
}

希望这是有道理的..任何帮助将不胜感激

4

1 回答 1

1

NSMutableArray *myArray = [myClass getMutableArray];

于 2012-09-18T04:08:24.637 回答