public static void main(String[] argv) { NSAutoreleasePool pool = new NSAutoreleasePool(); UIApplication.main(argv, null, IOSLauncher.class); pool.close(); }
public static void main(String[] argv) { try (NSAutoreleasePool pool = new NSAutoreleasePool()) { UIApplication.main(argv, null, Sample.class); } }
public static void main(String[] args) { NSAutoreleasePool pool = new NSAutoreleasePool(); UIApplication.main(args, null, Adventure.class); pool.close(); }
public static void main(String[] args) { try (NSAutoreleasePool pool = new NSAutoreleasePool()) { UIApplication.main(args, null, GoogleMobileAdsApp.class); } }