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(@"已點擊...");
}
未完,待續更新.........