ios24--改變button的文字和圖片
阿新 • • 發佈:2017-09-03
nor center span 文本 init align log view lstat
// // ViewController.m // 09-UIButton內部子控件的調整 // // Created by xiaomage on 15/12/30. // Copyright ? 2015年 小碼哥. All rights reserved. // #import "ViewController.h" #import "XMGButton.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 1.1 創建按鈕UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; // 1.2 設置frame button.frame = CGRectMake(100, 100, 170, 70);//不設置fram看不見 // 1.3 設置背景顏色 button.backgroundColor = [UIColor purpleColor]; // 1.4 設置文字 [button setTitle:@"普通按鈕" forState:UIControlStateNormal];// 1.5 設置內容圖片 [button setImage:[UIImage imageNamed:@"miniplayer_btn_playlist_normal"] forState:UIControlStateNormal]; // 1.6 改變位置 button.imageView.backgroundColor = [UIColor yellowColor]; button.titleLabel.backgroundColor = [UIColor blueColor]; // 註意: 在按鈕外面改的尺寸,按鈕的內部都會覆蓋掉 /*button.titleLabel.frame = CGRectMake(0, 0, 100, 70); button.imageView.frame = CGRectMake(100, 0, 70, 70); */ [button titleRectForContentRect:CGRectMake(0, 0, 100, 70)]; [button imageRectForContentRect:CGRectMake(100, 0, 70, 70)]; [self.view addSubview:button];//不連線,就通過addSubview。 } @end
// // XMGButton.h // 09-UIButton內部子控件的調整 // #import <UIKit/UIKit.h> @interface XMGButton : UIButton @end
// // XMGButton.m // 09-UIButton內部子控件的調整 // #import "XMGButton.h" @implementation XMGButton - (instancetype)initWithFrame:(CGRect)frame{ if (self = [super initWithFrame:frame]) { // 文本居中 self.titleLabel.textAlignment = NSTextAlignmentCenter; // 改變圖片的內容模式 self.imageView.contentMode = UIViewContentModeCenter; } return self; } #pragma mark - 方式一 /** * 重寫兩個方法: 不要調用super,就是要重寫掉 * contentRect: 內容的尺寸,內容包括(imageView和label) */ /* - (CGRect)titleRectForContentRect:(CGRect)contentRect{ return CGRectMake(0, 0, 100, 70); } - (CGRect)imageRectForContentRect:(CGRect)contentRect{ return CGRectMake(100, 0, 70, 70); } */ #pragma mark - 方式二 - (void)layoutSubviews{ [super layoutSubviews]; // 設置子控件的位置 self.titleLabel.frame = CGRectMake(0, 0, 100, 70); self.imageView.frame = CGRectMake(100, 0, 70, 70); } @end
ios24--改變button的文字和圖片