B4A Question Clears all markers, polylines and ground overlays that has been added to the googlemap - klaus (first post)    Mar 04, 2020 I don't think so.
NativeObject is specific to B4i. B4A Question Where is NativeObject located? - Erel (first post)    Dec 01, 2021 NativeObject is the B4i version of JavaObject. B4i Question GetField... RunMethod - Erel (first post)    Mar 10, 2019 Please use code here... tags when posting code.
NativeObject, is the B4i version of JavaObject. It allows you to access native APIs that were not exposed through a library.
The specific code you posted is similar to the Objective C code posted here: https://stackoverflow.com/a/23812061/971547 B4i Question solved - An error occurred when upgrading from B4i v8.0 to 8.3 - tufanv (first post)    May 19, 2023   (1 reaction) Dim FIRMessaging As NativeObject
FIRMessaging = FIRMessaging.Initialize("FIRMessaging").GetField("messaging")
Dim token As NativeObject = FIRMessaging.GetField("FCMToken") B4A Library [B4X] [XUI] [B4XLib] SD TextView - Star-Dust (first post)    Nov 18, 2021 Use the NativeObject method to access the native properties of the view and you can select multi-line B4i Question B4xPages without navigation bar - Ilya G. (first post)    Jul 26, 2023   (1 reaction) This works with: Dim no As NativeObject=NavControl no.GetField("").RunMethod("setDelegate:",Array(Null)) Thanks! B4i Question How to set a background image on a B4XPages - Semen Matusovskiy (first post)    Jul 16, 2020   (1 reaction) If you want to set 'solid' background, you need ImageView (with lowest z-order). But if you need a pattern (repeated image), you can set it like color. Dim nativeObjectPattern As NativeObject nativeObjectPattern = nativeObjectPattern.Initialize ("UIColor").RunMethod ("colorWithPatternImage:", Arra B4i Question NativeObject help - Erel (first post)    Sep 29, 2020   (1 reaction) Alternative crash reports framework: KSCrash - simple and powerful crash reports framework B4i Question NativeObject - Finding the currencySymbol - Darren69 (first post)    Jun 04, 2017 As always Erel, fast with the replies, I was so close ;) thanks for getting me there, now I have to figure out if the code was different for iOS9 because its not working on a device running that.. grrr apple ;) B4i Question Native Objects - Erel (first post)    Mar 10, 2015 NativeObject is similar to B4A JavaObject (or Reflector). It allows you to call native methods. It is good for simple API calls. The inline OBJC blocks are more powerful. Page: 1   2   3   4   5   6   7   Powered by ColBERT |