Codota Logo
UITextInputTextStyle
Code IndexAdd Codota to your IDE (free)

How to use
UITextInputTextStyle
in
org.robovm.apple.uikit

Best Java code snippets using org.robovm.apple.uikit.UITextInputTextStyle (Showing top 20 results out of 315)

  • Common ways to obtain UITextInputTextStyle
private void myMethod () {
UITextInputTextStyle u =
  • Codota IconNSDictionary data;new UITextInputTextStyle(data)
  • Smart code suggestions by Codota
}
origin: robovm/robovm

@MarshalsPointer
public static UITextInputTextStyle toObject(Class<UITextInputTextStyle> cls, long handle, long flags) {
  NSDictionary o = (NSDictionary) NSObject.Marshaler.toObject(NSDictionary.class, handle, flags);
  if (o == null) {
    return null;
  }
  return new UITextInputTextStyle(o);
}
@MarshalsPointer
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UIColor getBackgroundColor() {
  if (has(Keys.BackgroundColor())) {
    UIColor val = (UIColor) get(Keys.BackgroundColor());
    return val;
  }
  return null;
}
/**
origin: robovm/robovm

  @MarshalsPointer
  public static long toNative(List<UITextInputTextStyle> l, long flags) {
    if (l == null) {
      return 0L;
    }
    NSArray<NSDictionary> array = new NSMutableArray<>();
    for (UITextInputTextStyle i : l) {
      array.add(i.getDictionary());
    }
    return NSObject.Marshaler.toNative(array, flags);
  }
}
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UITextInputTextStyle setFont(UIFont font) {
  set(Keys.Font(), font);
  return this;
}
/*</methods>*/
origin: robovm/robovm

public NSObject get(NSString key) {
  if (has(key)) {
    return data.get(key);
  }
  return null;
}
public UITextInputTextStyle set(NSString key, NSObject value) {
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UITextInputTextStyle setBackgroundColor(UIColor backgroundColor) {
  set(Keys.BackgroundColor(), backgroundColor);
  return this;
}
/**
origin: com.gluonhq/robovm-cocoatouch

public NSObject get(NSString key) {
  if (has(key)) {
    return data.get(key);
  }
  return null;
}
public UITextInputTextStyle set(NSString key, NSObject value) {
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UIColor getTextColor() {
  if (has(Keys.Color())) {
    UIColor val = (UIColor) get(Keys.Color());
    return val;
  }
  return null;
}
/**
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UITextInputTextStyle setTextColor(UIColor textColor) {
  set(Keys.Color(), textColor);
  return this;
}
/**
origin: robovm/robovm

@MarshalsPointer
public static List<UITextInputTextStyle> toObject(Class<? extends NSObject> cls, long handle, long flags) {
  NSArray<NSDictionary> o = (NSArray<NSDictionary>) NSObject.Marshaler.toObject(NSArray.class, handle, flags);
  if (o == null) {
    return null;
  }
  List<UITextInputTextStyle> list = new ArrayList<>();
  for (int i = 0; i < o.size(); i++) {
    list.add(new UITextInputTextStyle(o.get(i)));
  }
  return list;
}
@MarshalsPointer
origin: com.gluonhq/robovm-cocoatouch

  @MarshalsPointer
  public static long toNative(List<UITextInputTextStyle> l, long flags) {
    if (l == null) {
      return 0L;
    }
    NSArray<NSDictionary> array = new NSMutableArray<>();
    for (UITextInputTextStyle i : l) {
      array.add(i.getDictionary());
    }
    return NSObject.Marshaler.toNative(array, flags);
  }
}
origin: com.mobidevelop.robovm/robovm-cocoatouch

public NSObject get(NSString key) {
  if (has(key)) {
    return data.get(key);
  }
  return null;
}
public UITextInputTextStyle set(NSString key, NSObject value) {
origin: robovm/robovm

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UIFont getFont() {
  if (has(Keys.Font())) {
    UIFont val = (UIFont) get(Keys.Font());
    return val;
  }
  return null;
}
/**
origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UITextInputTextStyle setBackgroundColor(UIColor backgroundColor) {
  set(Keys.BackgroundColor(), backgroundColor);
  return this;
}
/**
origin: com.mobidevelop.robovm/robovm-cocoatouch

@MarshalsPointer
public static UITextInputTextStyle toObject(Class<UITextInputTextStyle> cls, long handle, long flags) {
  NSDictionary o = (NSDictionary) NSObject.Marshaler.toObject(NSDictionary.class, handle, flags);
  if (o == null) {
    return null;
  }
  return new UITextInputTextStyle(o);
}
@MarshalsPointer
origin: com.mobidevelop.robovm/robovm-cocoatouch

  @MarshalsPointer
  public static long toNative(List<UITextInputTextStyle> l, long flags) {
    if (l == null) {
      return 0L;
    }
    NSArray<NSDictionary> array = new NSMutableArray<>();
    for (UITextInputTextStyle i : l) {
      array.add(i.getDictionary());
    }
    return NSObject.Marshaler.toNative(array, flags);
  }
}
origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UIColor getBackgroundColor() {
  if (has(Keys.BackgroundColor())) {
    UIColor val = (UIColor) get(Keys.BackgroundColor());
    return val;
  }
  return null;
}
/**
origin: com.mobidevelop.robovm/robovm-cocoatouch

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UITextInputTextStyle setTextColor(UIColor textColor) {
  set(Keys.Color(), textColor);
  return this;
}
/**
origin: com.gluonhq/robovm-cocoatouch

@MarshalsPointer
public static UITextInputTextStyle toObject(Class<UITextInputTextStyle> cls, long handle, long flags) {
  NSDictionary o = (NSDictionary) NSObject.Marshaler.toObject(NSDictionary.class, handle, flags);
  if (o == null) {
    return null;
  }
  return new UITextInputTextStyle(o);
}
@MarshalsPointer
origin: com.gluonhq/robovm-cocoatouch

/**
 * @since Available in iOS 3.2 and later.
 * @deprecated Deprecated in iOS 8.0.
 */
@Deprecated
public UIFont getFont() {
  if (has(Keys.Font())) {
    UIFont val = (UIFont) get(Keys.Font());
    return val;
  }
  return null;
}
/**
org.robovm.apple.uikitUITextInputTextStyle

Most used methods

  • <init>
  • get
  • getDictionary
  • has
  • set

Popular in Java

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • putExtra (Intent)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
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