Hi,
I´ve an app that i test on my iPhone 4 and it runs fine.
The problem comes with newer versions, as i can try on real devices, on iPhone 6, 7,8 and X it does not works as it should.
On runtime, i create a panel and on Tag property I put a map with relevant data for the app, when user clicks on it, map is not initialized:
What I'm doing wrong?
Regards.
I´ve an app that i test on my iPhone 4 and it runs fine.
The problem comes with newer versions, as i can try on real devices, on iPhone 6, 7,8 and X it does not works as it should.
On runtime, i create a panel and on Tag property I put a map with relevant data for the app, when user clicks on it, map is not initialized:
B4X:
Sub Partido_Click
Dim pnl As Panel
pnl=Sender
Log(pnl.Tag)
Variables.PartidoActual=pnl.Tag
If Variables.PartidoActual.IsInitialized Then
Partido.Show
Else
Msgbox("No se puede cargar el partido en este momento, intente mas tarde","Error")
End If
End Sub
What I'm doing wrong?
Regards.