views:

98

answers:

1

I'm working on a local (to the method) custom object and need to display a dialog (UIActionSheet or UIAlertView) to the user. What's the best way to get access to same object when delegate is called after user interacts with the dialog? Any Cocoa tricks besides adding another instance variable to current class?

A: 

One way is to use "Associated Objects". (but you can't test it in simulator.)

KennyTM