Re: iOS: Calling native methods on iPhone

2013-07-15 Thread Niklas Therning
11:26 PM, Tobias Bley wrote: > Hi Niklas, > > do you have an idea how to fix the problem? > > > > Anfang der weitergeleiteten Nachricht: > > *Von: *Tobias Bley > *Betreff: **Aw: iOS: Calling native methods on iPhone* > *Datum: *8. Juli 2013 09:57:16 MESZ > *A

Fwd: iOS: Calling native methods on iPhone

2013-07-15 Thread Tobias Bley
Hi Niklas, do you have an idea how to fix the problem? Anfang der weitergeleiteten Nachricht: > Von: Tobias Bley > Betreff: Aw: iOS: Calling native methods on iPhone > Datum: 8. Juli 2013 09:57:16 MESZ > An: Niklas Therning > > Hi Niklas, > > I tried it but it

Re: iOS: Calling native methods on iPhone

2013-07-05 Thread Tobi
Yes I know and I tried it already. But it throws an classCastException when setting the delegate to imagepicker. I think the problem could be that I do not use cocoa touch for the UI, I use javafx. Am 05.07.2013 um 14:03 schrieb Niklas Therning : > RoboVM already has bindings for most of th

Re: iOS: Calling native methods on iPhone

2013-07-05 Thread Niklas Therning
RoboVM already has bindings for most of the stuff in UIKit, UIImagePickerController included [1]. It's in the robovm-cocoatouch.jar file included in the download. It's mostly untested though. Please go ahead and try it out and let me know how it goes. [1] https://github.com/robovm/robovm/blob/mast

Re: iOS: Calling native methods on iPhone

2013-07-05 Thread Tobias Bley
Hi Tom, thats great! We need such efforts! the goal should be to use the automatically wrapped UIKit from Java, call the image picker and fetch an image from the iphone to show it in JavaFX! Who is the first guy who posts a demo image ;)? Best regards, Tobi It would be fantastic to have a real

Re: iOS: Calling native methods on iPhone

2013-07-05 Thread Tom Schindl
Hi, To not write the bro stuff manually I fired up xtext yesterday and created a small DSL which holds the (relevant) Header-Information and generates the Bro-Files for you. You can see the input https://github.com/tomsontom/objcgenerator/tree/master/bundles/at.bestsolution.objc.mapper.cocoa

Re: iOS: Calling native methods on iPhone

2013-07-04 Thread Tom Schindl
Robovm does that without jni it is called bro Tom Von meinem iPhone gesendet Am 04.07.2013 um 17:44 schrieb Tobias Bley : > Hi, > > after successfully using JavaFX (including font and CSS) on iOS I tried to > call native code on iPhone. I successfully fetched and visualized the battery > lev

Re: iOS: Calling native methods on iPhone

2013-07-04 Thread steve . x . northover
Hi Tobias, JNA can't be used on iOS because it dynamically looks up the address of a function at runtime and calls it. This is not allowed on iOS. Steve On 04/07/2013 11:44 AM, Tobias Bley wrote: Hi, after successfully using JavaFX (including font and CSS) on iOS I tried to call native co

iOS: Calling native methods on iPhone

2013-07-04 Thread Tobias Bley
Hi, after successfully using JavaFX (including font and CSS) on iOS I tried to call native code on iPhone. I successfully fetched and visualized the battery level of the iPhone! To do this I wrote objective c code and bind it to Java via JNI. No problem so far. But what I would like to do i