次の方法を使用して、uitextfieldの特定の角を丸めます。ただし、角を丸くして境界線を消去する効果があります。誰もが境界を消去することなくこれを行う方法を提案することはできますか?事前に感謝の意を表します。IOS/Objective-C:境界線を削除せずに四角形の丸い角をつける
-(void)roundBottomCornersOfView: (UITextField*) view by: (NSInteger) radius {
CGRect rect = view.bounds;
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:rect
byRoundingCorners:UIRectCornerTopLeft |UIRectCornerTopRight
cornerRadii:CGSizeMake(radius, radius)];
CAShapeLayer *layers = [CAShapeLayer layer];
layers.frame = rect;
layers.path = path.CGPath;
view.layer.mask = layers;
}