comment ajouter un objet multi NSArray dans un NSMutableArray

Je veux ajouter un objet à partir de 2 NSArray à NSMutableArray. Je ne sais pas à ce sujet.

ce mon code:

@interface ViewController : UITableViewController
{
    NSArray *animal;
    NSArray *color;
    NSMutableArray *all;
}


@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    animal = [[NSArray alloc]initWithObjects:@"Lion",@"Tiger",@"Dog",@"Cat",@"Sheep",@"Wolf", nil];
    color = [[NSArray alloc]initWithObjects:@"Blue",@"Red",@"Yellow",@"Green",@"Black", nil];

    all = ??? ; //how to add object from animal and color array in all 
}

OriginalL'auteur janatan | 2013-04-15