EGOTextView示例

时间:2012-03-18 14:00:21

标签: iphone ios ipad editing richtext

我一直在玩EGOTextView iOS项目,并且能够完成一些非常基本的编辑。如何将它插入UITextView非常酷。但现在我担心我不明白如何完全使用。有人知道使用EGOTextView进行富文本编辑的样本吗?

1 个答案:

答案 0 :(得分:1)

您可以调用EGOTextView的这些方法

  • (void)setFont:(UIFont *)font
  • (void)setText:(NSString *)text
  • (无效)setAttributedString:(NSAttributedString *)字符串
  • (无效)setEditable:(BOOL)可编辑
  • (无效)drawContentInRect:(的CGRect)RECT
  • (NSInteger的)closestWhiteSpaceIndexToPoint:(CGPoint)点
  • (NSInteger的)closestIndexToPoint:(CGPoint)点
  • (NSRange)characterRangeAtPoint _ :( CGPoint)点
  • (NSRange)characterRangeAtIndex:(NSInteger的)索引
  • (无效)setCorrectionRange:(NSRange)范围
  • (无效)setLinkRange:(NSRange)范围
  • (的UIColor *)selectionColor设置
  • (UITextPosition *)positionFromPosition:(UITextPosition *)position offset:(NSInteger)offset
  • (无效)deleteBackward
  • (无效)checkLinksForRange:(NSRange)范围
  • (无效)checkSpellingForRange:(NSRange)范围
  • (无效)长按:(UILongPressGestureRecognizer *)手势
  • (无效)doubleTap:(UITapGestureRecognizer *)手势
  • (无效)spellingCorrection:(UIMenuController *)发送

根据您的需要,还有更多的方法调用。