How is this View intended to be used?
This code does not work, the AI does not appear at all. Is there an iOS equivalent of DoEvents ???
B4X:
Private ActivityIndicator1 As ActivityIndicator 'Exists in loaded layout
Private i as int
'ActivityIndicator1.Visible = False 'Using this method is suggested elsewhere
ActivityIndicator1.Visible = True
For i = 0 to 1e6 'Loop many times
Next
ActivityIndicator1.Visible = False
This code does not work, the AI does not appear at all. Is there an iOS equivalent of DoEvents ???