Search code examples
iosuitextviewfacebook-ios-sdk

How do I make UITextview like Facebook comment view?


I want to make UITextview like in the Facebook comment view. How can I do it without using any external libraries?

Here is example image:

Example image


Solution

    • First, set the appearance of your UITextField to Alert to get the black keyboard.
    • Then, you only need two more views :

      • a black one for the background
      • a white one which will be the background of your text field, which you programmatically apply the following code to (don't forget to #import <QuartzCore/QuartzCore.h> first):

        view.layer.cornerRadius = 10;