Package org.robovm.cocoatouch.foundation

Examples of org.robovm.cocoatouch.foundation.NSNumber.floatValue()


  @Override
  public float getFloat (String key) {
    NSNumber value = (NSNumber)nsDictionary.get(convertKey(key));
    if (value == null) return 0f;
    return value.floatValue();
  }

  @Override
  public String getString (String key) {
    NSString value = (NSString)nsDictionary.get(convertKey(key));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.