Mr. Noddy
Mr. Noddy

Reputation: 1590

Inspecting IOS devices on chrome

I have following questions...

  1. I am simply using javascript profiling provided by google chrome, to optimize performance of my application. I actually needs to optimize performance on IOS device but not aware about how to do it from chrome. How can I do it?

  2. I have tried to do it from safari itself but I am unable to find Javascript profiling option in safari. What kind of option there in safari for this?

  3. Also can you please let me know how to save profile in safari as we do in chrome.

I don't want to confuse with timeline performance option. I am asking about javascript profiling option in safari like chrome. I am using safari version 9.0.2

Thank you, any help would be appreciated.

Upvotes: 1

Views: 1059

Answers (1)

Hammer
Hammer

Reputation: 8878

After you connect your iOS device to the computer and enable the remote debugging through safari (A simple guide), click on "Timeline" tab. You may find the "recording" option there, together with the panels for performance debugging of "Network Requests", "Layout & Rendering" and "Javascript & Events". Is that what you want?

Check this out to save the profile: https://github.com/google/ios-webkit-debug-proxy

Upvotes: 2

Related Questions