iOS Question Converting B4A to B4i - Matching Libraries

semar

Active Member
Licensed User
Longtime User
Hi all,
I have a working project in B4A which I wish to convert and deploy on iOs.

I've bought B4i in bundle with the remote compiler, and an iOs Developer License.

I can succesfully compile and deploy the example project. So far, so good.

Now in order to convert the B4A code to B4i, I need to know the matching libraries in iOs.

In other terms, in the B4A project the following libraries are used:

IME (for hiding and showing the soft keyboard)
Reflection
ViewAnimations
KeyValueStore (for saving and loading generic values on the device)

Following controls are also missed, which are the B4i counterparts ?
radiobutton
progressbar
edittext

Could you help and point me to the right directions ?

Thanks,
Sergio
 
Last edited:

Erel

B4X founder
Staff member
Licensed User
Longtime User
- Hide keyboard: https://www.b4x.com/android/forum/threads/about-how-to-hide-keyboard.64873/#post-410891
The keyboard will show automatically when needed.
- You can use NativeObject to access native APIs.
- There are many animation related methods built-in.
- KeyValueStore2 is cross platform: [B4X] KeyValueStore 2 - Simple & Powerful Local Datastore

- There is no native RadioButton in iOS. See these search results: https://www.b4x.com/android/forum/pages/results/?query=b4i+radiobutton
- ProgressBar = ProgressView
- EditText - TextField (single line) or TextArea (multiline)
 
Upvote 0
Top