Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I saw this video on youtube where, in objective-c he was able to override the _popoversDisabled method and allow them to be displayed on iPhones.

My Question is, how would I do the same thing in monotouch as shown as below:

This code was written by @hamzasood
===============================
=====popover code===========
=============================
@interface UIPopoverController (overrides)
+ (BOOL)_popoversDisabled;
@end

@implementation UIPopoverController (overrides)

+ (BOOL)_popoversDisabled { return NO;
}

@end

Objective-C video tutorial here: http://www.youtube.com/watch?v=1iykxemuxbk&feature=related

share|improve this question
1  
I'm pretty sure that overriding that method (which is almost definitely private) will get your app rejected from the App Store. – EmilioPelaez May 6 '12 at 5:22
I understand that. Just trying to learn. – Chris Kooken May 6 '12 at 5:23
It will get rejected, yes. It's a private var. – runmad Oct 1 '12 at 20:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.