小编典典

如何使按钮的角变圆

all

我有一个矩形图像(jpg),想用它来填充 xcode 中圆角按钮的背景。

我写了以下内容:

UIButton *button = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
CGRect frame = CGRectMake(x, y, cardWidth, cardHeight);
button.frame = frame;
[button setBackgroundImage:backImage forState:UIControlStateNormal];

然而,我用这种方法得到的按钮没有圆角:它是一个普通的矩形,看起来和我的原始图像一模一样。我怎样才能得到一个圆角的图像来代表我的按钮?

谢谢!


阅读 148

收藏
2022-07-09

共1个答案

小编典典

我用 UITextArea 尝试了以下解决方案,我希望这也适用于 UIButton。

首先在你的 .m 文件中导入这个 -

#import <QuartzCore/QuartzCore.h>

然后在您的loadView方法中添加以下行

    yourButton.layer.cornerRadius = 10; // this value vary as per your desire
    yourButton.clipsToBounds = YES;
2022-07-09