easythrees
easythrees

Reputation: 1650

iOS: Popping up custom UIView

I'm writing an iPad app that houses some notes and I need to be able to add a note to the existing collection. I'd like to spawn a window to enter a new note. I'd like it to be something like UIAlertView (which doesn't allow any subclassing), something that pops up, allows entry and then can be dismissed. Is there an existing way to do that?

Upvotes: 0

Views: 61

Answers (1)

Justin Meiners
Justin Meiners

Reputation: 11143

Add a UITextView to a UIPopoverController.

Read this question for a UIPopoverController example: Code to open a UIPopoverController

Check out the documentation for more information about UIPopoverController.

Upvotes: 1

Related Questions