Objective-C: insert a row into another row in a specific range

I need to insert a row into another row in a specific range. I know that there is a method appendingString, but I need to insert it into a given range in a string. thank

+5
source share
1 answer

NSMutableString insertString:atIndex: - this is what you are looking for.

More details here .

+11
source

All Articles