首页 > 代码库 > BSBuDeJie_03
BSBuDeJie_03
一 快速登录
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
三
四
五
六
七
八
九
十
十一
十二
十三
十四
十五
十六
BSBuDeJie_03
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。