user2037296
user2037296

Reputation: 421

Change popover arrow direction - iOS

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

Answers (1)

hvdd
hvdd

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

Related Questions