Questions tagged [uipopoverbackgroundview]

The UIPopoverBackgroundView class provides the background appearance for a popover.

The UIPopoverBackgroundView is abstract and must be subclassed before it can be used. The implementation of your subclass is responsible for providing the border decoration and arrow for the popover.

Subclasses must also override all declared properties and methods to provide information about where to lay out the corresponding popover content and arrow.

Source: UIPopoverBackgroundView Class Reference.

19 questions
1
vote
1 answer

change only a border color in UIPopoverController using custom UIPopoverBackgroundView

I know that there are several similar questions and there are several tutorials on this subject(like this one : http://blog.teamtreehouse.com/customizing-the-design-of-uipopovercontroller). But my need is just to change a popover border color, and…
pvllnspk
  • 5,667
  • 12
  • 59
  • 97
1
vote
0 answers

Remove MasterView shadow in UISplitView

I have a UISplitView iPad Application, which shows and hides the MasterView via gestures for swiping left/right. If I make the UITableView background white, it appears as it should. https://i.stack.imgur.com/dtv1Q.png However when I make the…
0
votes
1 answer

Shift to UIPopoverPresentationController

I want to create the same popover for my iPhone app with size GGrect of (320 100.0). Here is my old code: View * pk1 = [[View alloc] init]; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:pk1]; pop =…
0
votes
1 answer

UIPopover get exact position on screen

I have an iPad app in which I show an UIPopover view. I want to set the background of the popover depending on its position on the screen. Is it possible to get the exact position of the UIPopover relative to the screen?
lukas
  • 2,300
  • 6
  • 28
  • 41
1
2