How to convert string to array in objective C. i.e,I have a string,
NSString *str = @\"Hi,How r u\";
This should be converted into an array *NS
You can use the NSString method componentsSeparatedByString. Take a look at the reference here.