EGOTextView-Beispiel

8

Ich habe mit EGOTextView für ein iOS-Projekt gespielt und konnte einige grundlegende Änderungen vornehmen. Ist wirklich cool, wie es an Stelle von UITextView stecken kann. Aber jetzt habe ich Angst, dass ich nicht richtig verstehe, wie man es vollständig benutzt. Kennt jemand eine Probe mit EGOTextView für Rich-Text-Bearbeitung?

    
quzi 18.03.2012, 14:00
quelle

1 Antwort

1

Sie können diese Methode von EGOTextView

aufrufen
  • (void) setFont: (UIFont *) Schriftart
  • (void) setText: (NSString *) Text
  • (void) setAttributedString: (NSAttributedString *) Zeichenfolge
  • (void) setEditable: (BOOL) editierbar
  • (void) drawContentInRect: (CGRect) rect
  • (NSInteger) engsterWhiteSpaceIndexToPoint: (CGPoint) Punkt
  • (NSInteger) nearestIndexToPoint: (CGPoint) Punkt
  • (NSRange) characterRangeAtPoint _: (CGPoint) Punkt
  • (NSRange) characterRangeAtIndex: (NSInteger) -Index
  • (void) setCorrectionRange: (NSRange) Bereich
  • (void) setLinkRange: (NSRange) Bereich
  • (UIColor *) selectionColor
  • (UITextPosition *) positionFromPosition: (UITextPosition *) Positionsoffset: (NSInteger) offset
  • (void) deleteBackward
  • (void) checkLinksForRange: (NSRange) Bereich
  • (void) checkSpellingForRange: (NSRange) Bereich
  • (void) longPress: (UILongPressGestureRecognizer *) Geste
  • (void) doubleTap: (UITapGestureRecognizer *) Geste
  • (void) orthographyCorrection: (UIMenuController *) Absender

Nach Ihrem Bedarf bleiben noch viele Methoden übrig.

    
sanjeev sharma 25.06.2013 07:46
quelle

Tags und Links