国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS開發UIButton(左邊圖片右邊文字效果)

2020-07-26 03:07:51
字體:
來源:轉載
供稿:網友

在使用UIButton的時候,需要實現UIButton左邊圖片,圖片后面緊跟文字效果比較麻煩,簡單實現方法具體代碼如下:

(void)viewDidLoad {  [super viewDidLoad];  self.view.backgroundColor = RGB(235, 235, 240);  UIButton *oneButton = [[UIButton alloc] initWithFrame:CGRectMake(0, kHeaderHeight + 8, kScreenWidth, 40)];  [oneButton setImage:[UIImage imageNamed:@"icon_party_knowledge_rights_obligations"] forState:UIControlStateNormal];  [oneButton setTitle:@"第一個" forState:UIControlStateNormal];  oneButton.titleLabel.font = FONT(12);  [oneButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  [oneButton setImageEdgeInsets:UIEdgeInsetsMake(2, 8, 0, kScreenWidth - 50)];  [oneButton setTitleEdgeInsets:UIEdgeInsetsMake(0, 0, 0, kScreenWidth - 100)];  oneButton.backgroundColor = [UIColor whiteColor];  [oneButton addTarget:self action:@selector(oneButtonAction:) forControlEvents:UIControlEventTouchUpInside];  [self.view addSubview:oneButton];     UIButton *twoButton = [[UIButton alloc] initWithFrame:CGRectMake(0, oneButton.maxY + 8, kScreenWidth, 40)];  [twoButton setImage:[UIImage imageNamed:@"icon_party_knowledge_dues_collection_standard"] forState:UIControlStateNormal];  [twoButton setTitle:@"第二個" forState:UIControlStateNormal];  twoButton.titleLabel.font = FONT(12);  [twoButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  [twoButton setImageEdgeInsets:UIEdgeInsetsMake(2, 8, 0, kScreenWidth - 50)];  [twoButton setTitleEdgeInsets:UIEdgeInsetsMake(0, 0, 0, kScreenWidth - 100)];  twoButton.backgroundColor = [UIColor whiteColor];  [twoButton addTarget:self action:@selector(twoButtonAction:) forControlEvents:UIControlEventTouchUpInside];  [self.view addSubview:twoButton];     //右箭頭  for (int i = 0; i < 2; i++) {    UIImageView *rightImgView = [[UIImageView alloc] initWithFrame:CGRectMake(kScreenWidth - 20, kHeaderHeight + 20 + i * 48, 7, 12)];    rightImgView.image = [UIImage imageNamed:@"icon_right"];    [self.view addSubview:rightImgView];  }}

實現效果:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 三台县| 达拉特旗| 海林市| 吴桥县| 邹平县| 出国| 天气| 双江| 白水县| 临桂县| 望江县| 额济纳旗| 平罗县| 仪征市| 镇坪县| 广昌县| 梁山县| 峨边| 佛教| 淄博市| 郓城县| 永丰县| 钟祥市| 镇远县| 额济纳旗| 阿克| 玉溪市| 博罗县| 莱阳市| 伽师县| 普陀区| 肥乡县| 开江县| 佛坪县| 龙州县| 镇宁| 达尔| 大港区| 高邑县| 浦城县| 舒城县|