IOS中UIPickerView的屬性及委託方法

來源:互聯網
上載者:User

屬性

numberOfComponents (readonly) 選擇框的行數

dataSource (readonly) 資料來源

delegate 委託

(BOOL)showsSelectionIndicator 是否顯示選擇指標

這個選取器是指滑動時 PickerView上的選擇方塊:

如圖所示 阿紮爾上方浮動的 透明長方形就是指標

委託方法

UIPickerViewDelegate

-(void)pickerView: (UIPickerView*)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

選 中選擇框第row行時執行的代碼

-(NSString*)pickerView:(UIPickerView*)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component

顯示出來的每行的文本

- (UIView*)pickerView:(UIPickerView*)pickerView viewForRow:(NSInteger)row forComponent: (NSInteger)component reusingView:(UIView *)view

給選擇框設定視圖格式選項,可以是UIView以 及UIView的子類

這個方法可以設定自訂的視圖來取代預設的顯示每行的樣式

-(CGFloat) pickerView:(UIPickerView*)pickerView rowHeightForComponent:(NSInteger)component

設定行高 度

-(CGFloat)pickerView:(UIPickerView*)pickerView widthForComponent:(NSInteger) component

設定行寬度

UIPickerViewDataSource

這個委託中的兩個方法都是必需的

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView (required)

設定選擇框中可供選擇的行數

一般都是一個,也可以同時選擇兩個或更多

類似於選擇時間的 那種,左右有兩個軸同時進行選擇。

-(NSInteger)pickerView:(UIPickerView*)pickerView numberOfRowsInComponent:(NSInteger)component (required)

設定選擇框中一共的行數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.