自定義橫向滾動pickerview

CustomPickerView.h

定義pickerView選中item的代理

@protocol MyPickerViewDelegate <NSObject>
@optional
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:  (NSInteger)row;
@end

CustomPickerView.m

定義item高度及遵守pickerview代理
#define itemHeight 50
@interface CustomPickerView ()<UIPickerViewDelegate,UIPickerViewDataSource>
@end

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self performSelector:@selector(initPickerView)];
    }
    return self;
}

初始化 選擇器

-(void)initPickerView{

CGAffineTransform rotate = CGAffineTransformMakeRotation(-M_PI/2);
rotate = CGAffineTransformScale(rotate, 0.1, 1);
//旋轉(zhuǎn) -π/2角度
picker = [[UIPickerView alloc]initWithFrame:CGRectMake(0, 0, self.frame.size.height*10, self.frame.size.width)];

[picker setTag: 10086];
picker.delegate = self;
picker.dataSource = self;
picker.showsSelectionIndicator = false;
[picker setBackgroundColor:[UIColor clearColor]];

UIImageView *imageV = [[UIImageView alloc]initWithFrame:CGRectMake(self.frame.size.width/2-1.5, (self.frame.size.height- 60)/2, 3, 60)];
imageV.image = [UIImage imageNamed:@"PTZMiddleLine"];
UIView *bgV = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.frame.size.width,self.frame.size.height)];
[bgV addSubview:picker];
[bgV addSubview:imageV];
[self addSubview:bgV];
[picker setTransform:rotate];
picker.center = CGPointMake(self.frame.size.width / 2, self.frame.size.height / 2);

}

pickerView有多少個元素

-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{
return [dataArray count];
}

pickerView 有多少列

-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{
return 1;
}

每個 item 顯示的 視圖

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

CGAffineTransform rotateItem = CGAffineTransformMakeRotation(M_PI/2);
rotateItem = CGAffineTransformScale(rotateItem, 1, 10);

CGFloat width = self.frame.size.height;

UIView *itemView = [[UIView alloc]initWithFrame:CGRectMake(20, 0, width-40, 50)];
UIImageView *itemImgLeft;
UIImageView *itemImgRight;
if (row == 0) {
    itemImgLeft = [[UIImageView alloc]initWithFrame:CGRectMake(-0.5, (itemHeight -20)/2, 1, 20)];
    itemImgRight = [[UIImageView alloc]initWithFrame:CGRectMake(width-40-0., (itemHeight -20)/2, 1, 20)];
}else if(row == self.dataModel.count-1){
    itemImgLeft = [[UIImageView alloc]initWithFrame:CGRectMake(-1, (itemHeight -20)/2, 1, 20)];
    itemImgRight = [[UIImageView alloc]initWithFrame:CGRectMake(width-40-0.5, (itemHeight -21)/2, 1, 20)];
}else{
    itemImgLeft = [[UIImageView alloc]initWithFrame:CGRectMake(-1.1, (itemHeight -20)/2, 1, 20)];
    itemImgRight = [[UIImageView alloc]initWithFrame:CGRectMake(width-40+0.25, (itemHeight -20)/2, 1, 20)];
}
itemImgLeft.image = [UIImage imageNamed:@"PTZThinLine"];
itemImgRight.image = [UIImage imageNamed:@"PTZThinLine"];
[itemView addSubview:itemImgLeft];
[itemView addSubview:itemImgRight];
UIImageView *itemImgMiddle = [[UIImageView alloc]initWithFrame:CGRectMake((width-40)/2-1.5, (itemHeight -30)/2, 3, 30)];
itemImgMiddle.image = [UIImage imageNamed:@"PTZThickLine"];
[itemView addSubview:itemImgMiddle];

itemView.transform = rotateItem;
return itemView;
}

每個item的寬度

- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component __TVOS_PROHIBITED{
return self.frame.size.height;
}

每個item的高度

- (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component{
return itemHeight;
}

pickerView滑動到指定位置

-(void)scrollToIndex:(NSInteger)scrollToIndex{
[picker selectRow:scrollToIndex inComponent:0 animated:true];
}

查詢當前選擇元素Getter方法(index:選擇位置 name:元素名稱)

-(NSDictionary *)selectedItem{
NSInteger index = [picker selectedRowInComponent:0];
NSString *contaxt = dataArray[index];
return @{@"name":contaxt,@"index":[NSString stringWithFormat:@"%ld",index]};
}

pickerview選中的代理
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
[self.delegate pickerView:pickerView didSelectRow:row];
}

分割線的處理,去掉分割線

for (UIView *subv1 in self.pickerBgView.subviews) {
    if ([subv1 isKindOfClass:[CustomPickerView class]]) {
        for (UIView *subv2 in subv1.subviews) {
            if ([subv2 isKindOfClass:[UIView class]]) {
                for (UIView *subv3 in subv2.subviews) {
                    if ([subv3 isKindOfClass:[UIPickerView class]]) {
                        for (UIView *subv4 in subv3.subviews) {
                            if (subv4.frame.size.height < 1)//取出分割線view
                            {
                                //NSLog(@"subv4:%@",subv4);
                                subv4.hidden = YES;//隱藏分割線
                            }
                        }
                    }
                }
            }
        }
    }
}

完整Demo地址:https://github.com/WSGNSLog/CustomPickerView

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蝉稳,一起剝皮案震驚了整個濱河市什乙,隨后出現(xiàn)的幾起案子端朵,更是在濱河造成了極大的恐慌嵌莉,老刑警劉巖奸鸯,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绑嘹,死亡現(xiàn)場離奇詭異祠丝,居然都是意外死亡糠馆,警方通過查閱死者的電腦和手機嘶伟,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來又碌,“玉大人九昧,你說我怎么就攤上這事”显龋” “怎么了铸鹰?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長皂岔。 經(jīng)常有香客問我蹋笼,道長,這世上最難降的妖魔是什么躁垛? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任剖毯,我火速辦了婚禮,結(jié)果婚禮上教馆,老公的妹妹穿的比我還像新娘逊谋。我一直安慰自己,他們只是感情好土铺,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布胶滋。 她就那樣靜靜地躺著,像睡著了一般悲敷。 火紅的嫁衣襯著肌膚如雪究恤。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天后德,我揣著相機與錄音部宿,去河邊找鬼。 笑死探遵,一個胖子當著我的面吹牛窟赏,可吹牛的內(nèi)容都是我干的妓柜。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼涯穷,長吁一口氣:“原來是場噩夢啊……” “哼棍掐!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起拷况,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤作煌,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后赚瘦,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粟誓,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年起意,在試婚紗的時候發(fā)現(xiàn)自己被綠了鹰服。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡揽咕,死狀恐怖悲酷,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情亲善,我是刑警寧澤设易,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站蛹头,受9級特大地震影響顿肺,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜渣蜗,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一屠尊、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧袍睡,春花似錦知染、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至止潘,卻和暖如春掺炭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背凭戴。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工涧狮, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓者冤,卻偏偏與公主長得像肤视,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子涉枫,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容