Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I inspect elements on native iOS application

Tags:

ios

inspect

I am running an iOS native app on iOS Simulator and would like to inspect the elements on the app to get the ID.

Does anyone knows how this can be done?

Note: Please, this question is for iOS native App not Web based app!

Thanks

like image 725
user2073224 Avatar asked Mar 05 '13 22:03

user2073224


1 Answers

It sounds like you may be looking for something like Firebug or the Chrome Inspector for your native app? I'm not sure what you mean by "ID". Interface elements in iOS don't really have IDs the same way DOM elements have IDs.

You should check out the Spark Inspector (http://www.sparkinspector.com/), which allows you to see the views of your app and modify them at runtime - it may help you see what you're looking for. Full disclosure: I am the author of the app ;-)

like image 154
Ben Gotow Avatar answered Oct 04 '22 17:10

Ben Gotow