Anyone know of an easy way to create an array from a designated separator in obj-c?
What I mean is I want to create an array like
out of something like:
There is a way around this for me but if someone knows of a way to do this I can really cut out quite a few middle men.
What I mean is I want to create an array like
Code:
{hello,world,how,are,you}
out of something like:
Code:
@"hello:world:how:are:you"
There is a way around this for me but if someone knows of a way to do this I can really cut out quite a few middle men.