码迷,mamicode.com
首页 > 其他好文 > 详细

BSBuDeJie_03

时间:2016-11-12 23:19:44      阅读:158      评论:0      收藏:0      [点我收藏+]

标签: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 

十一

十二

十三

十四

十五

十六

 

BSBuDeJie_03

标签:ext   改变   调整   return   layout   ret   图片   ntc   dstat   

原文地址:http://www.cnblogs.com/roxy/p/6057565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!