4

Does anyone know of a tool and/or process that allows changes to be made in Xcode and reflected realtime in the iOS simulator?

e.g. if I change the gradient color(s) in a button I can see them reflected as I finish typing?

I know Spark Inspector and/or Reveal App allow me to make changes to the simulator but as far as I know, not such complex changes as gradient colors, and it can't commit the changes to the source code. Conversely, Pixate allows me to make the changes via css and update them in realtime, but I don't want to use css and a separate framework to do this.

Thanks a bunch for any help. Kyle

Kyle G
  • 4,347
  • 4
  • 26
  • 39
  • 1
    You can set stuff from the debugger: [How to change variables value while debugging with LLDB in Xcode?](http://stackoverflow.com/q/9907387), and Xcode 3.something (maybe it was even Project Builder!) used to have this tied into the editor, but they've removed that functionality a long time ago. Mentioned here: [Hot code swapping in Xcode](http://stackoverflow.com/q/10196155) -- "Fix and continue", it was called. – jscs Jul 27 '13 at 20:32
  • possible duplicate of [Hot Code Swapping in Xcode?](http://stackoverflow.com/questions/10196155/hot-code-swapping-in-xcode) – jscs Jul 27 '13 at 20:35

2 Answers2

3

You could take a look at Injection For Xcode.It is a Xcode plugin.After installing this plugin, you can modify source code, inject it into runtime, and see the change without restarting app.

vampirewalk
  • 819
  • 8
  • 19
0

Yes, try to look at this approach https://sherlock.inspiredcode.io. It allows to change details of your application in real-time.

dimpiax
  • 12,093
  • 5
  • 62
  • 45