UIScrollView

Hi all,


I think we need the viewDidLoad method to display controls that are out of the visible range.
In my test no controls out of range are visible.... 

Hi, 


You can try to manually call initialize on the controls inside the scrollview in the formshow to see if that makes a difference?

Kind Regards,
Scheldeman Pieter

Hi,


thank you, works fine.

  for i := 0 to form3.TMSFMXNativeUIScrollView1.ChildrenCount-1 do
    begin
      if form3.TMSFMXNativeUIScrollView1.Children is TTMSFmxNativeUILabel then
        TTMSFmxNativeUILabel(form3.TMSFMXNativeUIScrollView1.Children as TTMSFmxNativeUILabel).Initialize;
    end;

Philip