ios自訂選取器ActionSheetPicker改進版,iospicker

來源:互聯網
上載者:User

ios自訂選取器ActionSheetPicker改進版,iospicker

        ios內建的UIDataPicker和UIDatePicker最大的毛病就是沒有帶確定和取消這兩個按鈕,而ActionSheetPicker是以上兩個選取器的開源封裝。但是這個東東也有些小問題,就是沒有漢化選取器的內容。

原始的ActionSheetPicker運行起來是這個樣子的:

 

改進後是這以下這個樣子的

 

點擊此處下載,有問題可加扣扣359709421討論。

 

補充一個缺陷的修複,在ios7以上版本中,選取器資料部份是透明的,很不美觀,

把AbstractActionSheetPicker.m的showActionSheetPicker方法加上一行

masterView.backgroundColor=[UIColor whiteColor];

即可以解決此問題。

 

Java代碼  
  • - (void)showActionSheetPicker {  
  •     UIView *masterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.viewSize.width, 260)];      
  •     UIToolbar *pickerToolbar = [self createPickerToolbarWithTitle:self.title];  
  •     [pickerToolbar setBarStyle:UIBarStyleBlackTranslucent];  
  •     [masterView addSubview:pickerToolbar];  
  •     self.pickerView = [self configuredPickerView];  
  •     NSAssert(_pickerView != NULL, @"Picker view failed to instantiate, perhaps you have invalid component data.");  
  •     [masterView addSubview:_pickerView];  
  •     masterView.backgroundColor=[UIColor whiteColor];  
  •     [self presentPickerForView:masterView];  
  • }  
  • - (void)showActionSheetPicker {    UIView *masterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.viewSize.width, 260)];        UIToolbar *pickerToolbar = [self createPickerToolbarWithTitle:self.title];    [pickerToolbar setBarStyle:UIBarStyleBlackTranslucent];    [masterView addSubview:pickerToolbar];    self.pickerView = [self configuredPickerView];    NSAssert(_pickerView != NULL, @"Picker view failed to instantiate, perhaps you have invalid component data.");    [masterView addSubview:_pickerView];    masterView.backgroundColor=[UIColor whiteColor];    [self presentPickerForView:masterView];}

     

     我的網店,有勞各位參觀參觀  http://mrs-x.taobao.com/

    • 大小: 256.1 KB
    • 大小: 221.6 KB
    • TimCinel-ActionSheetPicker-4d01f72.zip



    相關文章

    聯繫我們

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