CocoaTouch(iPhone)中的双倍间距文本字段

时间:2010-04-23 09:49:45

标签: iphone cocoa-touch uitextview

我可以使用双倍行距的UITextView吗?我的意思是,它在编辑时保留了格式?

我需要在文本行之间显示图形元素。有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

抱歉回答错误的问题。

这里的答案是问题: iPhone: Disable the "double-tap spacebar for ." shortcut?

将它放在你的委托类中:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{


 //Check for double space

 if (range.location > 0 && [[NSCharacterSet whitespaceCharacterSet] characterIsMember:[string characterAtIndex:0]] && [[NSCharacterSet whitespaceCharacterSet] characterIsMember:[[textField text] characterAtIndex:range.location - 1]])
  return NO;

return YES;
}