iOS Question Orientation

cooperlegend

Active Member
Licensed User
Longtime User
Hi, Is there a way to detect when the orientation has been changed?

If so can this be set to run a routine to reload the views, this would fix an issue I have with my B4A conversion.

Please don't point me again to AutoScaling and resize events, these wont work for me as I use several layered designs for each orientation, a quick redraw would fix this instead.
 

derez

Expert
Licensed User
Longtime User
The subs that run in orientation change are Activity_pause , Activity_create and Activity_Resume, and the views are re-created by them. You should save data during Activity_pause.
 
Upvote 0
Top