91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中如何封裝UIPickerView

發布時間:2021-09-28 10:14:11 來源:億速云 閱讀:139 作者:小新 欄目:編程語言

這篇文章主要介紹iOS中如何封裝UIPickerView,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

所需屬性

/** pickerView*/@property (nonatomic, strong) UIPickerView pickerView;/* pickerView背景*/@property (nonatomic, strong) UIView pickerBackGroundView;/* 背景*/@property (nonatomic, strong) UIView backGroundView;/* 確認按鈕*/@property (nonatomic, strong) UIButton sureButton;/* 取消按鈕*/@property (nonatomic, strong) UIButton cancelButton;/* 單列pickerView*/@property (nonatomic, strong) NSMutableArray slDataArray;/* 雙列pickerView*/@property (nonatomic, strong) NSMutableArray *mulDataArray;

如果只需要一列的話,只需要傳入一個數據數組:slDataArray,如果需要兩行,則兩個數組都需要賦值。

實現UIPickerView代理方法

-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{  if (self.mulDataArray.count == 0) {  return 1; }else {  return 2;  }}-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{ if (component == 0) {  return self.slDataArray.count;  }else {  return self.mulDataArray.count; }}-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component{ if (component == 0) {  return self.slDataArray[row]; }else { return self.mulDataArray[row]; }}

這里根據兩個數組來初始化pickerView的內容,即判斷第二個數組(mulDataArray)是否有數據,有數據的話代表加載兩列的pickerView,否則加載一列。

功能實現

-(void)pickerViewSelectRow:(NSInteger)row{ self.selectRow = row; [self.pickerView selectRow:row inComponent:0 animated:NO];}-(void)pickerViewSelectRow:(NSInteger)row lastRow:(NSInteger)lastRow{ [self.pickerView selectRow:row inComponent:0 animated:NO]; [self.pickerView selectRow:lastRow inComponent:1 animated:NO];}

第一個方法是只有一列的pickerView初始化是讓其選中哪行,第二個則是兩列的選擇方法。

-(void)showOrHidePickerView:(BOOL)isShow{ if (isShow) {  if (self.isPickerShow == NO) {   [self addSubview:self.backGroundView];   [self addSubview:self.pickerBackGroundView];   [UIView animateWithDuration:0.3 animations:^{     self.backGroundView.alpha = 0.5;     self.pickerBackGroundView.frame = CGRectMake(0, SCREEN_HEIGHT -220, SCREEN_WIDTH, 220);   } completion:^(BOOL finished) {   self.isPickerShow = YES;   }];  } }else {  if (self.isPickerShow) {   [UIView animateWithDuration:0.3 animations:^{   self.backGroundView.alpha = 0.0;   self.pickerBackGroundView.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, 220);  } completion:^(BOOL finished) {   [self.backGroundView removeFromSuperview];   [self.pickerBackGroundView removeFromSuperview];   self.isPickerShow = NO;  }];  } }}

這個方法是顯示或者隱藏pickerView,通過動畫的方式,背景慢慢變黑或者透明,pickerView從下往上出現或者從上往下消失。

-(void)pickerViewReloadData{ [self.pickerView reloadAllComponents];}

刷新pickerView數據,加載另一個pickerView時,調用該方法刷新。

以上是“iOS中如何封裝UIPickerView”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汝州市| 察隅县| 陇川县| 清徐县| 平果县| 卢氏县| 龙泉市| 古田县| 海阳市| 西乌珠穆沁旗| 嘉祥县| 宝丰县| 阿拉善左旗| 锡林郭勒盟| 侯马市| 隆回县| 乌恰县| 鲁山县| 来宾市| 双江| 林甸县| 岳阳县| 北海市| 麻阳| 库伦旗| 邵阳市| 舞阳县| 十堰市| 辉县市| 宁德市| 翁牛特旗| 遂平县| 东阳市| 禄劝| 呼图壁县| 和硕县| 遵义市| 罗山县| 通辽市| 汉阴县| 浮山县|