Is it possible to check inside ViewController class that it is presented as modal view controller?
|
There is no neat way to do that, as a property or method native to UIKit. What you can do is to check several aspects of your controller to ensure it is presented as modal. So, to check if the current (represented as
EDIT: I added the last check to see if a UITabBarController is being used, and you present another UITabBarController as modal. EDIT 2: added iOS 5+ check, where EDIT 3: I've created a gist for it just in case https://gist.github.com/3174081 |
||||
|
|
|
If there isn't, you can define a property for this (
You can check this value in your I believe there isn't an official property that states how the view is presented, but nothing prevents you from creating your own. |
|||||
|
|
This should work.
|
|||||||||||
|
|
In iOS5+, As you can see in UIViewController Class Reference, you can get it from property "presentingViewController". presentingViewController The view controller that presented this view controller. (read-only) @property(nonatomic, readonly) UIViewController *presentingViewController If the view controller that received this message is presented by another view controller, this property holds the view controller that is presenting it. If the view controller is not presented, but one of its ancestors is being presented, this property holds the view controller presenting the nearest ancestor. If neither the view controller nor any of its ancestors are being presented, this property holds nil. Availability |
|||
|
|
If you don't need to distinguish between full-screen modal views and non-modal views, which is the case in my project (I was dealing with a problem that only occurs with form sheets and page sheets), you can use the modalPresentationStyle property of UIViewController:
|
|||
|
|
|
A hack like this might work.
However, I think my previous answer is a cleaner solution. |
|||
|
|
