user142019
user142019

Reputation:

Safari-style UIPopoverController from Toolbar

I'm creating an iPad application which needs a UIPopoverController like this one (I mean, with buttons):

sorry

I tried using a UIViewController but it gives me an enormous popup with a white background.

Can anyone explain me how to make one? I cannot find any documentation or example code. Thanks.

Upvotes: 5

Views: 2274

Answers (1)

kennytm
kennytm

Reputation: 523374

You need -[UIActionSheet showFromBarButtonItem:animated:] instead of a UIPopoverController.

Upvotes: 15

Related Questions