Say I do this:
@implementation currentViewController
...
SomeClass *myObject = [SomeClass alloc];
How can myObject get a reference of currentViewController without sending a message to myObject like this:
[myObject wasCreatedIn:self];
Side note: Where do action sheets and notifications get displayed in? The current view or the appDelegate window? Does the iphone save a current hierarchy of views or do I have to keep track of it myself?