svg.SVGContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtm-ios Show documentation
Show all versions of vtm-ios Show documentation
OpenGL vector map library - running on Android, iOS, Desktop and browser.
package svg;
import org.robovm.apple.foundation.NSObject;
import org.robovm.apple.uikit.UIColor;
import org.robovm.objc.annotation.Method;
public interface SVGContext {
@Method(selector = "colorForSVGColorString:")
public UIColor colorForSVGColorString(String svgColorString);
@Method(selector = "objectAtURL:")
public NSObject objectAtURL(String aLocation);
}