码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 自定义图片和文字垂直显示按钮<上面是图片,文字显示下面>

时间:2016-10-23 23:53:49      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:imp   调整   自定义   self   title   ntc   图片   #import   int   

#import <UIKit/UIKit.h>

@interface VerticalButton : UIButton

@end
#import "VerticalButton.h"

@implementation VerticalButton

- (void)setup
{
    self.titleLabel.textAlignment = NSTextAlignmentCenter;
}

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self setup];
    }
    return self;
}

- (void)awakeFromNib
{
    [self setup];
}

- (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;
}

@end

 

iOS 自定义图片和文字垂直显示按钮<上面是图片,文字显示下面>

标签:imp   调整   自定义   self   title   ntc   图片   #import   int   

原文地址:http://www.cnblogs.com/HJiang/p/5991244.html

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