怎么获取文本框或者按钮的宽和高? |
|
这里的人这么少么?
|
|
20分 |
这个版块的人真的少啊,我来回答你吧.
UIButton *button;//(加入有这个button) int width = button.frame.size.width; int height = button.frame.size.height; |
ls正解
|
|
像我这种初学者还是蛮多的。。。呵呵。。。学习了
|
|
建议这样写吧
for(UIView * view in [self.view.superView subviews]){ if([view isKindOfClass:[UIButton class]]) // 这里输入你想获取的控件的类 { int width = view.frame.size.width; int height = view.frame.size.height; } } 希望可以帮到你。 |
|
|
|
建议封装成分类
@interface UIView(helper) – (CGFloat)width; @end @implementation UIView(helper) – (CGFloat)width – (CGFloat)height @end 这么用多方便 |