標籤:
- (void)setTitle:(NSString *)title forState:(UIControlState)state;//設定標題
- (void)setTitleColor:(UIColor *)color forState:(UIControlState)state;//設定標題顏色
- (void)setTitleShadowColor:(UIColor *)color forState:(UIControlState)state;//設定標題陰影
- (void)setImage:(UIImage *)image forState:(UIControlState)state;//設定圖片
- (void)setBackgroundImage:(UIImage *)image forState:(UIControlState)state;//設定圖片背景 UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; button.frame = CGRectMake(100, 150, 60, 40);//設定按鈕位置大小
[button setTitle:@"Normal" forState:UIControlStateNormal];//設定常規下按鈕的標題
[button setTitle:@"Highlight" forState:UIControlStateHighlighted];//設定高亮狀態下的標題
[button addTarget:self action:@selector(didButtonClicked)forControlEvents:UIControlEventTouchUpInside];//設定按鈕的點擊事件
[self.view addSubview:button];//顯示在頁面上
ios 控制項 UIButton