我想为我的应用程序在按钮的右上角创建一个带有文本的不透明按钮。我尝试了以下方法来实现不透明度,但无法获得不透明度。
通过以下方法,我在背景中得到了白色按钮
1. UIButton *Button = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
Button.frame = CGRectMake(offset, height/4, buttonWidth, buttonHeight);
[Button setTitle:ButtonLabel forState:UIControlStateNormal];
Button.backgroundColor = [UIColor clearColor];
[Button addTarget:self action:@selector(action:)forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:Button];
2. CALayer *layer = Button.layer;
layer.backgroundColor = [[UIColor clearColor] CGColor];
layer.borderColor = [[UIColor blackColor] CGColor];
layer.cornerRadius = 8.0f;
layer.borderWidth = 2.0f;
我知道这可能是重复的,但是链接中给出的建议没有任何效果
另外请建议如何在按钮的右下角设置标题。