MJPopupViewController icon indicating copy to clipboard operation
MJPopupViewController copied to clipboard

A UIViewController Category to display a ViewController as a popup with different transition effects.

Results 51 MJPopupViewController issues
Sort by recently updated
recently updated
newest added

When popup with a UIViewContrller,viewDidAppear can be executed twice.When I see the sourcecode like this [UIView animateWithDuration:kPopupModalAnimationDuration animations:^{ [self.mj_popupViewController viewWillAppear:NO]; self.mj_popupBackgroundView.alpha = 0.5f; popupView.alpha = 1.0f; } completion:^(BOOL finished) {...

how do I set popover position? thx

Hi, First, thanks slot for awesome project. How can i control the alpha for the background viewController? 10x in advance!

Hi Guys, I've been trying this control and love it! I was just wondering if we can embed UIDatePicker in it, so user can pick a date and close it...

This control is super simple and easy to use. Im preparing in my fork a couple of updates: 1. Add the popup as a child VC so we can access...

if we present UINavigationController, when pushing or popping UIViewController, title in UINavigationBar beyonds the controller bounds.

Hello, i notice that the viewwillappear method of the UIViewController i pass here: presentPopupViewController for the display in the pop up is called twice, why?

Hi all, I inserted close button into my popup. Handlet action is: UIViewController *parent = [self parentViewController]; [parent dismissPopupViewControllerWithanimationType:MJPopupViewAnimationFade]; but popup is not close. Is it possible it? Thanks

If you call presentViewController in a displayed popoupViewController, the new VC will be shown but after it is dismissed the positioning of the displayed popupviewcontroller is buggy. Need urgent help....

I haved added 4 files from the source directory and imported "UIViewController+MJPopupViewController.h", and when i use the below code UIViewController *popupView = [[UIViewController alloc] init]; SampleView *sampleView = [[SampleView alloc]...