What does "Must explicitly describe intended ownership of an object array parameter" mean and how can I fix it?

listed in answer

What does "Must explicitly describe intended ownership of an object array parameter" mean and how can I fix it?
0 votes, 0.00 avg. rating (0% score)

ANSWER:

You are passing an array of pointers in an ARC environment. You need to specify one of the following:

  • __strong
  • __weak
  • __unsafe_unretained
  • __autoreleasing

by dasblinkenlight from http://stackoverflow.com/questions/10369662