- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我以编程方式为我的 View 设置背景图像:
UIImageView *backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Wormhole.jpg"]];
[self.view addSubview:backgroundView]
我在该 View 的 Storyboard 中放置的所有按钮都消失了,这显然不足为奇,因为现在图像下方有按钮,但我怎样才能使按钮再次可见?我不想在 Canvas 上放置带有我的背景图像的 ImageView 以及该 ImageView 上的所有按钮。
最佳答案
addSubview:
将 subview 添加到 subview 集合的末尾,在最高的 z 顺序。因此,背景将覆盖其他所有内容。
将 addSubview:
替换为 insertSubview:atIndex:
,这会将其置于所有其他 subview 的后面......
[self.view insertSubview:backgroundView atIndex:0];
关于ios - 以编程方式设置背景图像以查看 : All Buttons are disappeared,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25749408/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!