标签:ext 改变 调整 return layout ret 图片 ntc dstat
一 快速登录
1 改变状态栏的style
- (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
2 自定义按钮(图片在上,文字在下)
- (void)awakeFromNib { self.titleLabel.textAlignment = NSTextAlignmentCenter; } - (void)layoutSubviews { [super layoutSubviews]; //调整图片 self.imageView.x = 0; self.imageView.y = 0; self.imageView.width = self.width; self.imageView.height = self.imageView.width ; //调整文字 self.titleLabel.x = 0; self.titleLabel.y = self.imageView.height; self.titleLabel.width = self.width; self.titleLabel.height = self.height - self.titleLabel.y; }
二 简单的登录框
1
2
3
三
四
五
六
七
八
九
十
十一
十二
十三
十四
十五
十六
标签:ext 改变 调整 return layout ret 图片 ntc dstat
原文地址:http://www.cnblogs.com/roxy/p/6057565.html