Package org.robovm.cocoatouch.foundation

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


  @Override
  public long getLong (String key) {
    NSNumber value = (NSNumber)nsDictionary.get(convertKey(key));
    if (value == null) return 0L;
    return value.longValue();
  }

  @Override
  public float getFloat (String key) {
    NSNumber value = (NSNumber)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.