詳解iOS App中UIPickerView滾動選擇欄的添加方法_IOS

來源:互聯網
上載者:User

1.UIPickerView的寬度和高度是固定的,縱向是320216,橫向是568162

2.屬性:

複製代碼 代碼如下:

@property(nonatomic,readonly)NSInteger numberOfComponents; // 選擇框的行數

@property(nonatomic,assign)idUIPickerViewDataSource> dataSource; (類似於UITableView)

@property(nonatomic,assign)idUIPickerViewDelegate>delegate; (類似於UITableView)

(BOOL)showsSelectionIndicator// 是否顯示選擇指標 ,即是一個藍色的條

pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 216)]; 
//    指定Delegate 
    pickerView.delegate=self; 
//    顯示選中框 
    pickerView.showsSelectionIndicator=YES; 
    [self.view addSubview:pickerView]; 


以上可以在視圖顯示一個選取器,但是內容空白,pickerView.showsSelectionIndicator=YES;是這隻當前選取器所選中的內容:

選取器上顯示資料,必須依賴兩個協議,UIPickerViewDelegate和UIPickerViewDataSource,把他們添加到ViewController.h檔案中

複製代碼 代碼如下:

#import <UIKit/UIKit.h> 

@interface ViewController : UIViewController<UIPickerViewDelegate,UIPickerViewDataSource> 

    UIPickerView *pickerView; 
    NSArray *pickerData; 

@end 


3.然後在.m檔案的ViewDidLoad中初始化介面
複製代碼 代碼如下:

- (void)viewDidLoad 

    [super viewDidLoad]; 
    // Do any additional setup after loading the view, typically from a nib. 

    pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 216)]; 
//    指定Delegate 
    pickerView.delegate=self; 
//    顯示選中框 
    pickerView.showsSelectionIndicator=YES; 
    [self.view addSubview:pickerView];  

    NSArray *dataArray = [[NSArray alloc]initWithObjects:@"許嵩",@"周杰倫",@"梁靜茹",@"許飛",@"鳳凰傳奇",@"阿杜",@"方大同",@"林俊傑",@"胡夏",@"邱永傳", nil]; 

    pickerData=dataArray; 

//     添加按鈕    
    CGRect frame = CGRectMake(120, 250, 80, 40); 
    UIButton *selectButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 
    selectButton.frame=frame; 
    [selectButton setTitle:@"SELECT" forState:UIControlStateNormal]; 

    [selectButton addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside]; 

    [self.view addSubview:selectButton]; 

}


4.實現UIPickerView的代理方法,將資料顯示在選取器上所需要幾個方法
複製代碼 代碼如下:

#pragma mark - 
#pragma mark Picker Date Source Methods 

//返回顯示的列數 
-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView 

    return 1; 

//返回當前列顯示的行數 
-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component 

    return [pickerData count]; 

#pragma mark Picker Delegate Methods 

//返回當前行的內容,此處是將數組中數值添加到滾動的那個顯示欄上 
-(NSString*)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component 

    return [pickerData objectAtIndex:row]; 


前兩個是資料來源的代理方法,一個是返回列,有幾個選取器就返回幾,第二個是設定選取器有多少行,因為就這一個選取器,所以直接返回行數,即數組元素個數多少;第三個代理方法是將數組元素添加到了選取器上面顯示;

說一下兩個協議執行個體方法

UIPickerViewDelegate中的執行個體方法

複製代碼 代碼如下:

// 當使用者選擇某個row時

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

// 當其在繪製row內容,需要row的高度時

(CGFloat) pickerView:(UIPickerView *)pickerView rowHeightForComponent: (NSInteger) component
// 返回指定component.row顯示的文本

(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger) component
// 當picker view需要給指定的component.row指定view時,調用此函數.傳回值為用作row內容的view

(UIView *)pickerView: (UIPickerView *)pickerView view ForRow:(NSInteger) row forComponent:(NSInteger) component reusingView:(UIView *) view
// row的寬度

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


UIPickerViewDataSource中的執行個體方法

按照官方文檔的說法,UIPickerViewDataSource這個協議僅有的功能就是提供picker view中component的個數和各個component中的row的個數,雖然名為datasource,但是它工作於MVC的C中

本協議僅有兩個執行個體方法,均需要實現:

複製代碼 代碼如下:

// 返回列數

(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
// 返回每一列對應的行數

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


5.關於按鈕響應事件,關於按鈕的形成和添加響應事件不再提,前面都有,
複製代碼 代碼如下:

(void) buttonPressed:(id)sender 

     NSInteger row =[pickerView selectedRowInComponent:0]; 
     NSString *selected = [pickerData objectAtIndex:row]; 
     NSString *message = [[NSString alloc] initWithFormat:@"你選擇的是:%@",selected]; 

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示"  
                                                    message:message 
                                                   delegate:self 
                                          cancelButtonTitle:@"OK" 
                                          otherButtonTitles: nil]; 
    [alert show]; 



@UIPickerView還有其他執行個體方法
複製代碼 代碼如下:

// 擷取指定列的行數

- (NSInteger) numberOfRowsInComponent:(NSInteger)component

// 重新整理所有的列

(void) reloadAllComponents
// 重新整理指定的列

(void) reloadComponent: (NSInteger) component

(CGSize) rowSizeForComponent: (NSInteger) component

// 擷取某列選擇的行數

(NSInteger) selectedRowInComponent: (NSInteger) component
// 選擇一行

(void) selectRow: (NSInteger)row inComponent: (NSInteger)component animated: (BOOL)animated

(UIView *) viewForRow: (NSInteger)row forComponent: (NSInteger)component

PS:多個component對應不同title的方法
有時候我們需要有多個component的UIPickerView並且對應不同的內容,比如地區的選擇,需要有省份和城市兩個選項,選擇不同的省份,城市要相應發生變化。

下面假設component數量為2。

使用指定title的函數,根據[pickerView selectedRowInComponent:0]的不同來指定第二個component的title

複製代碼 代碼如下:

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

但此時,會發現切換省份後,城市一欄沒有辦法及時重新整理。

我們還要指定重新整理事件。

複製代碼 代碼如下:

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
    [pickerView reloadComponent:1];
}

相關文章

聯繫我們

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