アプリケーションのボタンの右隅にテキストを含む不透明なボタンを作成したいと考えていました。不透明度を達成するために次の方法を試しましたが、不透明度を取得できませんでした。
以下のアプローチでは、背景に対して白いボタンを取得していました
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;
これが重複している可能性があることは知っていますが、リンクに示されている提案からは何も機能していません
また、ボタンの右下隅にタイトルを設定する方法を提案してください。