如何在两种方法中使用一个数组

时间:2016-08-16 11:23:16

标签: ios objective-c

如何在一个方法中在数组中插入值,并在其他方法中使用此完整的值数组。

-(void)firstMethod {

      NSMutableArray *array = [[NSMutableArray alloc] init];
      ../// add some value in array.
}

-(void)secondMethod {


       ..// here i want to work with array which consist of value from first method.

 }

0 个答案:

没有答案