Quantcast
Channel: Planet Object Pascal
Viewing all articles
Browse latest Browse all 1725

Daniel Magin's Logfile: FMX TForm do NOT use ShowModal

$
0
0

Working on a big Delphi Firemonkey iOS Project i found out calling TForm Method ShowModal create such cross effects for incalculable situations. Working with UITableViewController for example the created SubForms the bouncing effects are not working anymore correct.

So if you create and show a form with a parent form created with show modal replace it with show Method

myNewForm:=TMyForm.create(self);

myNewForm.ShowModal;

myNewForm.Show;

 

btw: in iOS projects a showModal Method fit not in the concept from iOS.


Viewing all articles
Browse latest Browse all 1725

Trending Articles