UIButton的四種常用類(lèi)型

做項(xiàng)目Demo的時(shí)候偶爾想到這個(gè)按鈕比較常用 , 就寫(xiě)出來(lái)了 , 可以寫(xiě)成工具類(lèi)方法給項(xiàng)目使用;

圖例

image.png


#import "RecommendViewCtrl.h"

@interface RecommendViewCtrl ()<UIScrollViewDelegate,UIGestureRecognizerDelegate>

@end

@implementation RecommendViewCtrl

- (instancetype)init
{
    self = [super init];
    if (self)
    {
        self.view.backgroundColor = [UIColor whiteColor];
        self.tabBarItem.title = @"推薦";
        self.tabBarItem.image = [UIImage imageNamed:@"icon.bundle/like@2x.png"];
        self.tabBarItem.selectedImage = [UIImage imageNamed:@"icon.bundle/like_selected@2x.png"];
    }
    return self;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
    scrollView.backgroundColor = [UIColor lightGrayColor];
    scrollView.contentSize = CGSizeMake(self.view.bounds.size.width * 5, self.view.bounds.size.height);
    scrollView.delegate = self;
    NSArray *colorArray = @[[UIColor redColor],[UIColor blueColor],[UIColor yellowColor],[UIColor lightGrayColor],[UIColor grayColor]];
    
    for (int i = 0; i < 5; i++) {
        [scrollView addSubview:({
            UIView *view = [[UIView alloc] initWithFrame:CGRectMake(scrollView.bounds.size.width * i, 0, scrollView.bounds.size.width, scrollView.bounds.size.height)];
            
            // 1.左圖右文:
            [view addSubview:({
                UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
                [button1 setFrame:CGRectMake(100,50, 100, 100)];
                button1.backgroundColor = [UIColor orangeColor];
                [button1 addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
                
                [button1 setTitle:@"左圖右文" forState:UIControlStateNormal];
                [button1.titleLabel setFont:[UIFont systemFontOfSize:12.0f]];
                [button1 setImage:[UIImage imageNamed:@"icon.bundle/like_selected@2x.png"] forState:UIControlStateNormal];
                [button1 setTitleEdgeInsets:UIEdgeInsetsMake(0, 10, 0, 0)];
                button1;
                
            })];
            
            // 2.左文右圖:
            [view addSubview:({
                UIButton *button2 = [UIButton buttonWithType:UIButtonTypeCustom];
                [button2 setFrame:CGRectMake(100, 150, 100, 100)];
                button2.backgroundColor = [UIColor purpleColor];
                
                [button2 setTitle:@"左文右圖" forState:UIControlStateNormal];
                [button2.titleLabel setFont:[UIFont systemFontOfSize:12.0f]];
                [button2 setImage:[UIImage imageNamed:@"icon.bundle/like_selected@2x.png"] forState:UIControlStateNormal];
                // 文字偏移量:
                [button2 setTitleEdgeInsets:UIEdgeInsetsMake(0, - button2.imageView.width - 10, 0, button2.imageView.width)];
                // 圖片偏移量:
                [button2 setImageEdgeInsets:UIEdgeInsetsMake(0, button2.titleLabel.width, 0, - button2.titleLabel.width)];
                button2;
            })];

            // 3.上圖下文:
            [view addSubview:({
                
                UIButton *button3 = [UIButton buttonWithType:UIButtonTypeCustom];
                [button3 setFrame:CGRectMake(100, 250, 100, 100)];
                button3.backgroundColor = [UIColor lightGrayColor];
                [button3 setTitle:@"上圖下文" forState:UIControlStateNormal];
                [button3.titleLabel setFont:[UIFont systemFontOfSize:12.0f]];
                [button3 setImage:[UIImage imageNamed:@"icon.bundle/like_selected@2x.png"] forState:UIControlStateNormal];

                // 文字偏移量:往下 , 往左移動(dòng):
                [button3 setTitleEdgeInsets:UIEdgeInsetsMake(button3.imageView.height + 10, - button3.imageView.width, 0, 0)];
                // 圖片偏移量:往上 , 往右移動(dòng):
                [button3 setImageEdgeInsets:UIEdgeInsetsMake(0, button3.titleLabel.width / 2, button3.titleLabel.height + 10.0, - button3.titleLabel.width / 2)];
                button3.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
                
                button3;
                
            })];
            
            // 4.上文下圖:
            [view addSubview:({
                
                UIButton *button4 = [UIButton buttonWithType:UIButtonTypeCustom];
                [button4 setFrame:CGRectMake(100, 350, 100, 100)];
                button4.backgroundColor = [UIColor greenColor];
                [button4 setTitle:@"上圖下文" forState:UIControlStateNormal];
                [button4.titleLabel setFont:[UIFont systemFontOfSize:12.0f]];
                [button4 setImage:[UIImage imageNamed:@"icon.bundle/like_selected@2x.png"] forState:UIControlStateNormal];
                
                // 文字偏移量:往上 , 往左移動(dòng):
                [button4 setTitleEdgeInsets:UIEdgeInsetsMake(- button4.imageView.height + 10, - button4.imageView.width, 0, 0)];
                // 圖片偏移量:往下 , 往右移動(dòng):
                [button4 setImageEdgeInsets:UIEdgeInsetsMake(button4.titleLabel.height + 10, button4.titleLabel.width / 2, - button4.titleLabel.height - 10, - button4.titleLabel.width / 2)];
                button4;
                
            })];
            
            view.backgroundColor = [colorArray objectAtIndex:i];
            view;
        })];
        
    }
    scrollView.pagingEnabled = YES;
    [self.view addSubview:scrollView];
}

- (void)buttonClicked:(UIButton *)button
{
    NSLog(@"buttonClicked");
}

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
    return YES;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
//    NSLog(@"scrollViewDidScroll - %@",@(scrollView.contentOffset.x));
}

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    NSLog(@"BeginDragging");
}

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
    NSLog(@"EndDragging");
}
- (void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView
{
    
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    
}

@end

愿編程讓這個(gè)世界更美好

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌啤呼,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異优炬,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)厅贪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén)蠢护,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人养涮,你說(shuō)我怎么就攤上這事葵硕∶继В” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵懈凹,是天一觀的道長(zhǎng)蜀变。 經(jīng)常有香客問(wèn)我,道長(zhǎng)介评,這世上最難降的妖魔是什么库北? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮们陆,結(jié)果婚禮上寒瓦,老公的妹妹穿的比我還像新娘。我一直安慰自己坪仇,他們只是感情好杂腰,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著椅文,像睡著了一般喂很。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上皆刺,一...
    開(kāi)封第一講書(shū)人閱讀 49,784評(píng)論 1 290
  • 那天恤筛,我揣著相機(jī)與錄音,去河邊找鬼芹橡。 笑死毒坛,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的林说。 我是一名探鬼主播煎殷,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼腿箩!你這毒婦竟也來(lái)了豪直?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤珠移,失蹤者是張志新(化名)和其女友劉穎弓乙,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體钧惧,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡暇韧,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了浓瞪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片懈玻。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖乾颁,靈堂內(nèi)的尸體忽然破棺而出涂乌,到底是詐尸還是另有隱情艺栈,我是刑警寧澤,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布湾盒,位于F島的核電站湿右,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏罚勾。R本人自食惡果不足惜诅需,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望荧库。 院中可真熱鬧,春花似錦赵刑、人聲如沸分衫。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)蚪战。三九已至,卻和暖如春铐懊,著一層夾襖步出監(jiān)牢的瞬間邀桑,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工科乎, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留壁畸,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓茅茂,卻偏偏與公主長(zhǎng)得像捏萍,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子空闲,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 徐鶴寧老師主講:如何快速成為行業(yè)第一如何一對(duì)一談判說(shuō)服令杈!如何倍增時(shí)間、倍增自己年輕大成功的秘密碴倾!如何問(wèn)話(huà)式銷(xiāo)售系統(tǒng)...
    8913be35eba5閱讀 170評(píng)論 0 1
  • 90后現(xiàn)在已經(jīng)走向社會(huì)逗噩,并在各種工作崗位中有著不可替代的作用,那怎樣管理跌榔、了解异雁、領(lǐng)導(dǎo)90后也是一門(mén)學(xué)問(wèn),通過(guò)...
    ASEN007閱讀 538評(píng)論 0 1
  • 昨天通過(guò)多線(xiàn)程實(shí)現(xiàn)方案之 -- NSThread說(shuō)了關(guān)于 NSThread 多線(xiàn)程的一些知識(shí)點(diǎn)和用法, 其實(shí)之...
    devZhang閱讀 2,682評(píng)論 24 50