Codota Logo
UITextView.setLinkTextAttributesDictionary
Code IndexAdd Codota to your IDE (free)

How to use
setLinkTextAttributesDictionary
method
in
org.robovm.apple.uikit.UITextView

Best Java code snippets using org.robovm.apple.uikit.UITextView.setLinkTextAttributesDictionary (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: robovm/robovm

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextAttributes(NSAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary());
  }
}
/**
origin: robovm/robovm

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextMarkupAttributes(CMTextMarkupAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}
/**
origin: robovm/robovm

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkCoreTextAttributes(CTAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}

origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextAttributes(NSAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary());
  }
}
/**
origin: com.gluonhq/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextAttributes(NSAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary());
  }
}
/**
origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextMarkupAttributes(CMTextMarkupAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}
/**
origin: com.gluonhq/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkTextMarkupAttributes(CMTextMarkupAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}
/**
origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkCoreTextAttributes(CTAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}

origin: com.gluonhq/robovm-cocoatouch

/**
 * @since Available in iOS 7.0 and later.
 */
@WeaklyLinked
public void setLinkCoreTextAttributes(CTAttributedStringAttributes v) {
  if (v == null) {
    setLinkTextAttributesDictionary(null);
  } else {
    setLinkTextAttributesDictionary(v.getDictionary().as(NSDictionary.class));
  }
}

org.robovm.apple.uikitUITextViewsetLinkTextAttributesDictionary

Popular methods of UITextView

  • DidBeginEditingNotification
  • DidChangeNotification
  • DidEndEditingNotification
  • getLinkTextAttributesDictionary
  • getTypingAttributesDictionary
  • init
  • initObject
  • setTypingAttributesDictionary

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getContentResolver (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • JButton (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now