How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a la
Use something like [yourString componentsSeparatedByString:@"/"]. You will get an NSArray of separated strings.
[yourString componentsSeparatedByString:@"/"]