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
I guess this link will help you.
NSString *str = @"Hi,How r u"; NSArray *listItems = [str componentsSeparatedByString:@","];