I have one string as follows:
NSString *str = @"abcd,efgh";
Now I want to convert this string into NSMutableArray like
NSMutableArray *arr = {abcd,efgh};
then how can I do this?
any help would be appreciated.
I have one string as follows:
NSString *str = @"abcd,efgh";
Now I want to convert this string into NSMutableArray like
NSMutableArray *arr = {abcd,efgh};
then how can I do this?
any help would be appreciated.