iOS Question Event names

kohle

Active Member
Licensed User
Longtime User
B4X:
Sub Page1_BarButtonClick (Tag As String)
    If Tag="xxx" Then
         NavControl.ShowPage(xxx)
    End If

End Sub

how i find this event name in the documentation. Where do i have to look ?
In the designer I can generate only for views.
 

kohle

Active Member
Licensed User
Longtime User
Example:
I am developing an app and start to use the toolbar in the designer.
I put some icons.
My next question is how I can access this icons in my code.
Like, I want to set one icon enabled = false.
Yes, I can search in the forum, but without forum,
where can I find this information.
Accessing toolbar icons, enable/disable a toolbar on several pages, .....

Its for me a basic question, where i find this infos when I cant generate events from members in the designer.
 
Upvote 0

moster67

Expert
Licensed User
Longtime User
In your code, start writing a new sub and then press Tab on your keyboard and you should be able to select events that are available.
Is this what you are looking for?

Probably Klaus beginner manual covers this too.
 
Upvote 0
Top