Maximilian Fischer
Maximilian Fischer

Reputation: 33

What kind of popover on iPad

The iPad app pdf expert displays popovers which seem to consist only of the header. Which kind of popover is this? I can't find something about it in the Apple docs. But it seems to be a standard UI element. Or is it a custom view?

Upvotes: 3

Views: 239

Answers (1)

Pratik Somaiya
Pratik Somaiya

Reputation: 818

Its nothing like a custom view. Its just without UINavigationController.

        ViewController *viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
        UIPopoverController * popover = [[UIPopoverController alloc] initWithContentViewController:viewController];
        popover.delegate = self;
        popover.popoverContentSize = CGSizeMake(644, 425);
        [popover presentPopoverFromRect:button.frame inView:self.view permittedArrowDirections: UIPopoverArrowDirectionLeft | UIPopoverArrowDirectionUp animated:YES];

This will solve you problem. Check it out.!!

Upvotes: 4

Related Questions