views:

13

answers:

1

A customer has requested that they want the cursor in the UITextView to be horizontal instead of vertical. Anyone know how I might do that as there isn't any public API to modify the cursor.

A: 

I don't think you could do it in uitextview. If you're determined, you could write a new text editor using Core Text and render the cursor however you like. That's a lot of work though.

Amorya