Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

When working with iOS, I sometimes have values I need to test with. I may adjust these values 30 times, and have to rebuild/rerun 30 times to test them. This is an obvious hassle.

So I was wondering (using the iOS SDK) if it was possible to tweak small parameters/data at the app's runtime? Just to make life convenient.

share|improve this question
You are being a bit vague... – Jacky Boy Mar 22 at 14:26
2  
If you mean using the debugger, check this answer: stackoverflow.com/questions/9907387/… – James P Mar 22 at 14:27
1  
I've never tried that, it should work if you can test what you need against simulator reading "parameters/data" from files. To do that you replace the files at documents folder (or even at bundle) located on your disk, then let the app to read updated files. If you need to use a device for testing, there's still a similar solution using something like iExplorer, don't know if it's possible to automate copying for such apps though. – A-Live Mar 22 at 14:41

marked as duplicate by Monolo, Secator, Frank Schmitt, Roman C, Mark Mar 23 at 9:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 7 down vote accepted
  1. Set a BreakPoint
  2. In lldb debug area type:

Example 1:

expr (void)[aView setBackgroundColor:(UIColor*)[UIColor redColor]]

Here, aView is an UIView for which I want to see its frame at runtime. I am calling the setBackgroundColor method of an UIView at runtime. Any method could be called like that.

Example 2:

expr nsstringVariable = @"yourRunTimeValue"

Here, I am changing a string variable at run time.

For more help on expr type

help expr

I highly recommend people to read this tutorial by Brian Moakley Intermediate Debugging with Xcode 4.5

share|improve this answer
Thanks! It works! – MCKapur Mar 23 at 0:20

Yes, with Injection for Xcode:

Using Injection it is possible to make a change to the implementation of an Objective-C class and have it take effect as soon as the class is saved without having to restart the application. This feature works for OS X and iOS applications in the simulator and on iOS devices.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.