You can record the screen of your device for free. what you will need is an IOS8+ device and OS Yosemite on your mac
There are two types of modules in B4i: static modules and classes. A class is a template. At runtime you can create any number of instances based on the class template. Each instance will have its own set of global variables (its state). You...
In the last week or two I encountered a strange pause which happened during full installations. There were two symptoms: 1. The installation paused for a few seconds after it started. 2. It took several seconds for the app. This makes full...
The code of Coordinates Calculator app is attached. You can download this app from Apple App Store: https://itunes.apple.com/us/app/b4i-coordinates-calculator/id915366768?mt=8
v8.80 - December 4, 2024 - https://www.b4x.com/android/forum/threads/b4i-v8-80-has-been-released.164471/ The builder and the IDE were updated to better handle the signing process and now identify and support keys created with newer versions of...
I begun 'learning' graphics in B4i, and found some differences between B4a and B4i based on an iPhone 6: - There are no 'dip' values in B4i (perhaps not yet ?) - On my iPhone 6, LayoutValues.Scale returns 1 and LayoutValues.NonnormalizedScale...
A Canvas object allows you to draw over a view. Canvas.Initialize expects a single parameter which is the target view. You can then use the different drawing methods to draw over the view. The drawings will only be applied when you call...