What does "Must explicitly describe intended ownership of an object array parameter" mean and how can I fix it?
listed in answer
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

New Comments