首页 > 代码库 > 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