IOS UIButton用法詳解

這段代碼動態的建立了一個UIButton,而且把相關經常使用的屬性都列舉了.但願對你們有用.web

  //這裏建立一個圓角矩形的按鈕
UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];

// 可以定義的button類型有如下6種,
// typedef enum {
// UIButtonTypeCustom = 0, 自定義風格
// UIButtonTypeRoundedRect, 圓角矩形 
// UIButtonTypeDetailDisclosure, 藍色小箭頭按鈕,主要作詳細說明用
// UIButtonTypeInfoLight, 亮色感嘆號
// UIButtonTypeInfoDark, 暗色感嘆號
// UIButtonTypeContactAdd, 十字加號按鈕
// } UIButtonType;

//給定button在view上的位置
button1.frame = CGRectMake(20, 20, 280, 40);

//button背景色
button1.backgroundColor = [UIColor clearColor];

//設置button填充圖片
//[button1 setImage:[UIImage imageNamed:@"btng.png"] forState:UIControlStateNormal];

//設置button標題
[button1 setTitle:@"點擊" forState:UIControlStateNormal];

/* forState: 這個參數的做用是定義按鈕的文字或圖片在何種狀態下才會顯現*/
//如下是幾種狀態
// enum {
// UIControlStateNormal = 0, 常規狀態顯現 
// UIControlStateHighlighted = 1 << 0, 高亮狀態顯現 
// UIControlStateDisabled = 1 << 1, 禁用的狀態纔會顯現
// UIControlStateSelected = 1 << 2, 選中狀態 
// UIControlStateApplication = 0x00FF0000, 當應用程序標誌時 
// UIControlStateReserved = 0xFF000000 爲內部框架預留,能夠無論他 
// };

/*
* 默認狀況下,當按鈕高亮的狀況下,圖像的顏色會被畫深一點,若是這下面的這個屬性設置爲no,
* 那麼能夠去掉這個功能
*/
button1.adjustsImageWhenHighlighted = NO;
/*跟上面的狀況同樣,默認狀況下,當按鈕禁用的時候,圖像會被畫得深一點,設置NO能夠取消設置*/
button1.adjustsImageWhenDisabled = NO;
/* 下面的這個屬性設置爲yes的狀態下,按鈕按下會發光*/
button1.showsTouchWhenHighlighted = YES;

/* 給button添加事件,事件有不少種,我會單獨開一篇博文介紹它們,下面這個時間的意思是
按下按鈕,而且手指離開屏幕的時候觸發這個事件,跟web中的click事件同樣。
觸發了這個事件之後,執行butClick:這個方法,addTarget:self 的意思是說,這個方法在本類中
也能夠傳入其餘類的指針*/
[button1 addTarget:self action:@selector(butClick:) forControlEvents:UIControlEventTouchUpInside];

//顯示控件
[self.view addSubview:button1];
框架

注意:ide

[button1 addTarget:self 
action:@selector(alarmTimeDone:) 
forControlEvents:UIControlEventTouchUpInside
];

addTarget:self 是連接到self,通常都這樣設置
action:@selector(alarmTimeDone:) 時間處理函數
forControlEvents:UIControlEventTouchUpInside 控件事件處理的消息
 
函數


//取消按鈕已經添加的全部事件:(這個比較重要,若添加了兩個事件  兩個事件都會被觸發)spa

[btn removeTarget:nil action:nil forControlEvents:UIControlEventTouchUpInside];
.net


什麼時候釋放release UIButton?指針

是否在dealloc中對UIButton對象進行release操做,取決於UIButton初始化的方式。orm

若是使用[UIButtonbuttonWithType:UIButtonTypeRoundedRect]這種方式,是不須要進行release操做的,由於這種方式是自動釋放的。若是使用 [[UIButton alloc]init]的方式,則須要主動進行release釋放操做。對象


IOS UIButton事件
blog


UIControlEventTouchDown

單點觸摸按下事件:用戶點觸屏幕,或者又有新手指落下的時候。

UIControlEventTouchDownRepeat

多點觸摸按下事件,點觸計數大於1:用戶按下第2、3、或第四根手指的時候。

UIControlEventTouchDragInside

當一次觸摸在控件窗口內拖動時。

UIControlEventTouchDragOutside

當一次觸摸在控件窗口以外拖動時。

UIControlEventTouchDragEnter

當一次觸摸從控件窗口以外拖動到內部時。

UIControlEventTouchDragExit

當一次觸摸從控件窗口內部拖動到外部時。

UIControlEventTouchUpInside

全部在控件以內觸摸擡起事件。

UIControlEventTouchUpOutside

全部在控件以外觸摸擡起事件(點觸必須開始與控件內部纔會發送通知)。

UIControlEventTouchCancel

全部觸摸取消事件,即一次觸摸由於放上了太多手指而被取消,或者被上鎖或者電話呼叫打斷。

UIControlEventTouchChanged

當控件的值發生改變時,發送通知。用於滑塊、分段控件、以及其餘取值的控件。你能夠配置滑塊控件什麼時候發送通知,在滑塊被放下時發送,或者在被拖動時發送。

UIControlEventEditingDidBegin

當文本控件中開始編輯時發送通知。

UIControlEventEditingChanged

當文本控件中的文本被改變時發送通知。

UIControlEventEditingDidEnd

當文本控件中編輯結束時發送通知。

UIControlEventEditingDidOnExit

當文本控件內經過按下回車鍵(或等價行爲)結束編輯時,發送通知。

UIControlEventAlltouchEvents

通知全部觸摸事件。

UIControlEventAllEditingEvents

通知全部關於文本編輯的事件。

UIControlEventAllEvents

通知全部事件。

DRAG 事件

在y方向上移動

 UIButton *btn1= [UIButton buttonWithType:UIButtonTypeCustom];

    btn1.frame = CGRectMake(0, 0, 100, 100);

    btn1.backgroundColor = [UIColor blackColor];

    [btn1 addTarget:self action:@selector(dragMoving:withEvent: ) forControlEvents:UIControlEventTouchDragInside];

    [self.view addSubview:btn1];


- (void) dragMoving: (UIButton *) c withEvent:ev

{

//    self.a=1;

    CGPoint a = [[[ev allTouches] anyObject] locationInView:self.view];

    a.x = c.center.x;

    c.center = a;

    NSLog(@"%f,,,%f",c.center.x,c.center.y);

}

相關文章
相關標籤/搜索