我
在 A 类 中有 4 种方法
-(void)Method1
{
}
B类
-(void)Method2
{
//calling method3 here
}
-(void)Method3
{
//calling method4 here
}
-(NsMutablearray*)Method4
{
return array;
}
我从method1调用method2,它上升到method4,method4返回一个nsmutablearray。如何在我的方法 1 中获取该数组。