Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSTextView round corners and draw background

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!

like image 368
PawelPawel Avatar asked Dec 24 '22 15:12

PawelPawel


1 Answers

Add it to Text View property

enter image description here

[self.textView setWantsLayer:YES];
[self.textView.layer setCornerRadius:10.0f];

And you can see>

enter image description here

But you Scroll View backgroundColor should be WindowBackgroundcolor

enter image description here

enter image description here

like image 191
Joe Hallenbeck Avatar answered Dec 28 '22 08:12

Joe Hallenbeck