gpt4 book ai didi

iphone - 如何制作带边框的半圆形(顶角圆角) TextView ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:07:12 25 4
gpt4 key购买 nike

如何使用 borderwidth 和 borderColor 制作半圆角(顶角圆角)的 textview 或 tableview? enter image description here

最佳答案

这并不完美,但您可以从这里着手:

#import <QuartzCore/CoreAnimation.h>

(并且还链接到您项目中的 QuartzCore.framework),然后..

self.textView.layer.borderColor = [UIColor redColor].CGColor;
self.textView.layer.borderWidth = 4.0f;

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.textView.bounds
byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight
cornerRadii:CGSizeMake(7.0, 7.0)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.textView.bounds;
maskLayer.path = maskPath.CGPath;
self.textView.layer.mask = maskLayer;
[maskLayer release];

关于iphone - 如何制作带边框的半圆形(顶角圆角) TextView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10995226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com