Reputation: 421
How can I change the position of the popover arrow, instead of it being in the up and centre, I want it to be up and to the right.
NOTE: My navigation bar is a custom nav bar.
I tried the solution referenced in this link but I cann't get it to change its position correctly. it's always centred.
Upvotes: 1
Views: 567
Reputation: 544
For more control you might consider not using a popover at all.
Change the value to NO:
- (BOOL)popoverSupported
{
return NO;
}
in the file
CDVCamera.m
Upvotes: 1