For two I've been working on following problem:
I'm supposed to create message chat view which is going to be placed in NSTableView
. It has to have color background, rounded corners, custom margins. I tried with NSTextField
but with no success. I have desired background and rounded corners but text is not displayed correctly because it starts in the center of the field in case of multiline. Also I tried with NSTextView
, which seems to be better solution in this situation, but I couldn't set rounded corners. I tried using [textView.layer setCornerRadius:7.0];
but it gives no effect.
Thanks for any reply!
Add it to Text View property
[self.textView setWantsLayer:YES];
[self.textView.layer setCornerRadius:10.0f];
And you can see>
But you Scroll View backgroundColor should be WindowBackgroundcolor
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With