Joe Sansalone 6 Posted December 26, 2022 Hi, I remember something in the most recent versions of Delphi, that we can enable iOS mobile app to also include the top statusbar on iPhone ... make it same color like form. Do we need to set a global var in project source file? If so, what is it? I totally forgot. Thanks, Joe Share this post Link to post
programmerdelphi2k 237 Posted December 26, 2022 try this: Quote Form1.SystemStatusBar.BackgroundColor := << color >>; Form1.SystemStatusBar.Visibility := TFormSystemStatusBar.TVisibilityMode.Visible; Share this post Link to post
Joe Sansalone 6 Posted December 26, 2022 Thank you ... I was looking in the wrong place! Share this post Link to post