Reputation: 183
Possible to make the custom form of the UITexView? For example ellipse or semi ellipse form.
or a more complex case
Upvotes: 0
Views: 184
Reputation: 5331
Yes, try
atextview.layer.borderWidth = 2.0;
atextView.layer.borderColor = [UIColor blackColor];
atextView.layer.cornerRadius = 10; //adjust it to change req. shape
UPDATE: In case of change in contentInSet
check this question and answer
Upvotes: 2
Reputation: 1315
No need for that, just make it transparent and put UIImageView with any image U like underneath it...
Upvotes: -1