自定义pickview的高度

参考:http://jinkeu.blog.163.com/blog/static/2089212920119114276787/

UIPickerView *pickerView = [[UIPickerView allocinitWithFrame:CGRectZero];

pickerView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth; //这里设置了就可以自定                                                                                                                           义高度了,一般默认是无法修改其216像素的高度

pickerView.dataSource = self;   //这个不用说了瑟

pickerView.delegate = self;       //这个不用说了瑟

pickerView.frame = CGRectMake(084320100);

pickerView.showsSelectionIndicator = YES;    //这个最好写 你不写来试下哇


[self.view addSubview:pickerView];

[pickerView release];

/****************************下面是数据源和代理的实现***********************************/

#pragma mark -

#pragma mark UIPickerViewDataSource


- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView

{

return 2;     //这个picker里的组键数

}


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

{

return [self.pickerNameArray count];  //数组个数

}

#pragma mark -

#pragma mark UIPickerViewDelegate

/************************重头戏来了************************/

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

{

UILabel *myView = nil;       

if (component == 0) {

myView = [[[UILabel allocinitWithFrame:CGRectMake(0.00.010030)] autorelease];

myView.textAlignment = UITextAlignmentCenter;

myView.text = [pickerNameArray objectAtIndex:row];

myView.font = [UIFont systemFontOfSize:14];         //用label来设置字体大小

myView.backgroundColor = [UIColor clearColor];

}else {

myView = [[[UILabel allocinitWithFrame:CGRectMake(0.00.018030)] autorelease];

myView.text = [pickerPlaceArray objectAtIndex:row];

myView.textAlignment = UITextAlignmentCenter;

myView.font = [UIFont systemFontOfSize:14];

myView.backgroundColor = [UIColor clearColor];

}

return myView;

}


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

{

CGFloat componentWidth = 0.0;

if (component == 0)

componentWidth = 100.0; // 第一个组键的宽度  

else

componentWidth = 180.0; // 第2个组键的宽度

return componentWidth;

}


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

{

return 40.0;

}

左右比例:------------------------------------------------------------
- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component
{
if(component == 1)    
    return 108;
return 200;
}
整体大小:------------------------------------------------------
customPickerView = [[UIPickerView alloc] initWithFrame:CGRectZero];
    customPickerView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    customPickerView.tag = 101;
    customPickerView.dataSource = self;
    customPickerView.delegate = self;
    customPickerView.frame = CGRectMake(176, 187, 132, 80);    
    customPickerView.showsSelectionIndicator = YES;

更改字体大小------------------------------------------------------

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row
          forComponent:(NSInteger)component reusingView:(UIView *)view
{
    mycom1 = view ? (UILabel *) view : [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 60.0f, 30.0f)];
    
        NSString *imgstr1 = [[NSString alloc] initWithFormat:@"%d", row];
        mycom1.text = imgstr1;    
        [mycom1 setFont:[UIFont boldSystemFontOfSize:30]];
        mycom1.backgroundColor = [UIColor clearColor];
        CFShow(mycom1);
        [imgstr1 release];        
    
    return mycom1;    
}



  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值