function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sandy GaliSandy Gali 

Load time for Visualforce page in Salesforce1 on IOS

Hi Guys,
            I have noticied that VF pages take a long time to load in Salesforce1, roughly around 5-6 secs.
Even a simple 'Hello World' page takes 5-6 secs when it loads for the first time in Salesforce1 and the subsquent loads are little better.

Has any one else faced such issues on VF pages in Salesforce1.
Any tips/pointers in improving the performance would be appreciated.
bob_buzzardbob_buzzard
Sadly Visualforce does take a long time - its loaded into an iframe when the containing component is rendered, which results in another full http request, which isn't a particularly fast protocol. The usual tips apply - reduce the number of includes, avoid the viewstate, reduce the size of any images.