I'm trying to add a new subView to a page, such that everything but itself is greyed out. However, I'm calling it from within a subview of the screen. To get it out, I have to do the following :
[self.view.superview.superview.superview.superview addSubview:self.cardDialog.view];
As you can surmise, this is extremely bad code. How can I find the proper parent level and set it correctly?