I am wondering how to convert an NSArray [@\"Apple\", @\"Pear \", 323, @\"Orange\"] to a string in Objective-C.
[@\"Apple\", @\"Pear \", 323, @\"Orange\"]
The way I know is easy.
var NSArray_variable = NSArray_Object[n] var stringVarible = NSArray_variable as String
n is the inner position in the array This in SWIFT Language. It might work in Objective C
n