B4i Question NativeObject - where can i find the methods i can set - Alexander Stolte    Jul 19, 2022 I often see in the forum that someone is using the nativeobject to make settings, but I always wonder where to get this information from the commands I can put there?
Dim no As NativeObject = tv_TextView
no.SetField("LeftPadding",0)... B4i Question [Solved] Problems with NativeObject - angel_    Feb 7, 2021 How can I use NativeObject with B4XPages in this code?:
Private no As NativeObject = Me
Log(no...("preferredLanguages", Null).RunMethod("objectAtIndex:", Array(0)).AsString)
Log... B4i Question NativeObject help - yiankos1    Sep 28, 2020 >FirebaseCrashlyticsCollectionEnabled</key><false/>
Private Sub GetCrashlytics As NativeObject
Dim no As NativeObject
no.Initialize("Crashlytics").RunMethod("crashlytics"... B4i Question Strange nativeObject.RunMethod results - Semen Matusovskiy    Apr 3, 2020 I need to convert UIColor to CGColor (to set border color in a layer).
At first, I used Objective-C.
- (NSObject *) UIColorToCGColor: (UIColor *) u { return ; }
Worked as expected (result was <CGColor 0x600002a3e1c0>...).
But then I tried u.RunMethod ("CGColor", Null)). Result: <B4INativeObject: {length = 8, bytes = 0xc0e1a30200600000}>. As I understand... B4i Question NativeObject CreateBlock - narek adonts    Dec 21, 2018 Hi
few issues with the NativeObject.CreateBlock method
1. why max param size is 2 ? I need more
2.
Dim n as NativeObject
n1=n1.CreateBlock(…)
n.RunMethodWithBlock(…)
Sub Block_Event(args() object... B4i Library iPhoneNumber - validate phone numbers - Erel    Nov 18, 2025   (5 reactions) , DefaultRegion As String) As Boolean Dim util As NativeObject util = util.Initialize("NBPhoneNumberUtil").RunMethod("sharedInstance", Null) Dim PhoneNumber As NativeObject = util... As NativeObject = util.GetField("gerror") If error.IsInitialized Then Log(error... B4i Question Problem GetField NativeObject - mayahandayani (first post)    Jun 20, 2024
Please start a new thread.
Done. Thanks... B4i Question #IF OBJC / NativeObject - Sergio Haurat (first post)    Jun 20, 2024
1. Use GetMyWifiIp <> "127.0.0.1" to check whether the device is connected to wifi.... B4i Library KSCrash - simple and powerful crash reports framework - Erel    Jan 23, 2025   (20 reactions) . In Process_Globals: Private xui As XUI Private reporter As NativeObject 3. In Application_Start: Dim KSCrashVersion As Double = Me.as(NativeObject).RunMethod("getVersion", Null... As ResumableSub Dim no As NativeObject no = no.Initialize("KSCrash").RunMethod...) If Result = xui.DialogResponse_Positive Then Dim nme As NativeObject = Me... Sleep(0) Dim sf As Object = xui.Msgbox2Async("The app crashed last time... B4i Question NativeObject target in a class? - JackKirk    Mar 23, 2016 Hi,
Dim no As NativeObject = Me
Dim bmp_bytes() As Byte = no.NSDataToArray(no.RunMethod("BitmapToArray:", Array(bmp)))
I have run this bit of code successfully in Main to convert a bitmap... Page: 1   2   3   4   5   6   7   |