Tattat
Tattat

Reputation: 15778

Which iPhone UI Element is the Mail using?

How can I create the textfield that can accept image and text like the mail apps does?

Upvotes: 0

Views: 152

Answers (1)

kennytm
kennytm

Reputation: 523214

The composition view of Mail is a customized implementation of UIWebDocumentView (which also powers UIWebView and UITextView).

To create a text view that accepts images, you need to reconstruct the rendering and event handling mechanism yourself to abide to AppStore rules.

Upvotes: 2

Related Questions