iOS UIButton各類屬性設置大全

//設置自定義的按鈕
//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(@"已點擊...");


}
未完,待續更新.........
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章