我想在光标当前所在的位置插入文本,所以我有以下代码
NSString *contentsToAdd = [myData objectAtIndex:row];
NSMutableString *tfContent = [[NSMutableString alloc] initWithString:[self.myTextView text]];
// add content where the cursor was
[tfContent insertString:contentsToAdd atIndex:myCursorPosition.location];
[self.myTextView setText:tfContent];
[tfContent release];
这工作如下
Hi
HiFriend
我想在附加文本之前和之后留一个空格(嗨,朋友)。
那我应该怎么做呢?