Gluon Application can't load FXML on ios when I using H2 database as embedded
问题 I have create Gluon mobile application that using H2 database as embedded mode. It working fine on Window,Mac,Android. But it unluckily it not working on iOS simulator (The fxml can't load). If I comment the code to load Driver, the UI will load properly. Code Load Driver //load the driver class try { Class.forName(DBCONFIG.DB_DRIVER).newInstance(); } catch (ClassNotFoundException e) { System.out.println("class not found"); e.printStackTrace(); } catch (IllegalAccessException e) { System.out