Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现与附加图像类似的东西——只是一个半透明的覆盖层、一个标签和一个按钮。我尝试添加一个带有按钮和标签的视图并降低 alpha,但我无法让它工作。有谁知道我如何在努力降低内存成本的同时实现类似的目标。
预先感谢您的任何帮助 :)。
实际上,添加一个具有半透明背景颜色的子视图对我来说效果很好:
我添加到单视图应用程序模板的唯一代码:
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [self.view addSubview:self.semiView]; }