Re: [F-Script-talk] Simulator Dictionary Path?
Brought to you by:
pmougin
From: Philippe M. <pm...@ac...> - 2008-05-17 17:30:07
|
Le 16 mai 08 à 22:09, DKeller a écrit : > Can I simply inspect myDictionary in the iphone simulator with F- > Scipt or FSA? Don't know; I didn't tried injecting F-Script into the simulator with F-Script Anywhere yet. > What is the object graph path to my application's NSDictionary's > using FSA? It depends where in your object graph your dictionary is located. One easy way to make it accessible from F-Script is to implement, in Objective-C, a class method (say, "myMethod") in one of your classes (say, "MyClass"), which would return your dictionary. Then, in F- Script, you would simply type: "MyClass myMethod". This works because F-Script let you access classes directly by name. Best, Philippe Mougin |