作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试从 UIView
获取所有按钮。我试过这段代码,但它不起作用。
for (UIView *subview in self.view.subviews)
{
if ([subview isKindOfClass:[UIButton class]]
{
NSLog(@"found a button!");
subview.layer.borderWidth = 1.0f;
subview.layer.borderColor = [[UIColor whiteColor] CGColor];
[subview.layer setCornerRadius: subview.frame.size.width/2.0f];
NSLog(@"button.tag = %ld", (long)subview.tag);
}
}
请帮忙。
最佳答案
使用此代码:
- (void)getAllButtonFromView:(UIView*)view {
for (UIView* subview in view.subviews) {
if (subview.subviews.count > 0) {
[self getAllButtonFromView:subview];
}
else if ([subview isKindOfClass:[UIButton class]]) {
NSLog(@"found a button!");
subview.layer.borderWidth = 1.0f;
subview.layer.borderColor = [[UIColor whiteColor] CGColor];
[subview.layer setCornerRadius: subview.frame.size.width/2.0f];
NSLog(@"button.tag = %ld", (long)subview.tag);
}
}
}
问题可能是您的按钮没有直接添加到 View 中,实际上它们是添加到 View 的 subview 中的。因此,只需检查 view.subviews 中的 subview 中的 View 是否具有包含 UIButton 的 subview 。
关于ios - 如何从 View 中获取所有按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43493830/
我是一名优秀的程序员,十分优秀!