Hello I have an NSString * ParamString - it contains a record of the form firstparam / secondparam. I need to pull out the firstparam and secondparam variables into other variables. That is:
NSString FirstParamString = firstparam; // text to a slash NSString SecondParamString = secondparam; // text after slash
Tell me please.