The C# equivalent of String split in iOS is possible. The easiest way to split a NSString into an NSArray is the following:
NSString *string = @"hello,world";
NSArray *stringArray = [string componentsSeparatedByString: @","];
NSString *string = @"hello,world";
NSArray *stringArray = [string componentsSeparatedByString: @","];