Reputation: 1795
I want to send Mutable Array with all its objects from my First Class to Second Class. I have no idea how can i do this please anybody tell me the way...
Upvotes: 0
Views: 215
Reputation: 1207
you make one declare mutable array and make it property on other class where you want to then just give like follow
vc.nsmutablearray = the_array_you_want_to_send;
Upvotes: 0
Reputation: 6448
Try this:
yourSecondClass.mutableArray_asAMemberVariable = [[yourFirstClass mutableArray_asAMemberVariable] copy];
This makes a copy out your firstClass mutable array and sends it to your second class.
Upvotes: 1