iOS UIButton各類屬性設定大全

來源:互聯網
上載者:User

標籤:uibutton   app   ios   按鈕   監聽事件   

   //設定自訂的按鈕
   //UIButton *button1=[UIButton buttonWithType:UIButtonTypeCustom];
    //設定一個圓角的按鈕
    UIButton *button1=[UIButton buttonWithType:UIButtonTypeRoundedRect];
    
    button1.frame=CGRectMake(80,250,250, 30);//按鈕的位置座標
    [button1 setTitle:@"Button1" forState:UIControlStateNormal];//普通狀態按鈕標題
    [button1 setTitle:@"高亮狀態" forState:UIControlStateHighlighted];//高亮狀態的按鈕標題
    //高亮狀態光暈效果
    [button1 setShowsTouchWhenHighlighted:YES];
    //設定標題的顏色
    [button1 setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
    //設定標題的字型大小
    [button1.titleLabel setFont:[UIFont boldSystemFontOfSize:20]];
    //設定背景顏色
   [button1 setBackgroundColor:[UIColor blueColor]];
    //圖片被展開式地設定背景圖片
   [button1 setBackgroundImage:[UIImage imageNamed:@"1.jpg"] forState:UIControlStateNormal];
    //圖片保持原來大小地設定背景圖片
   //[button1 setImage:[UIImage imageNamed:@"1.jpg"] forState:UIControlStateNormal];
  [[button1 titleLabel]setShadowColor:[UIColor blackColor]];
   [[button1 titleLabel]setShadowOffset:CGSizeMake(-0.5, -0.5)];
   button1.contentHorizontalAlignment=UIControlContentHorizontalAlignmentLeft;
    [self.view addSubview:button1];
//監聽事件
    [button1  addTarget:self action:@selector(Click_Button) forControlEvents:UIControlEventTouchUpInside];
}
-(void)Click_Button
{
    NSLog(@"已點擊...");


}
未完,待續更新.........

iOS UIButton各類屬性設定大全

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.