0

我目前有一个带有两个组件的 uipicker。第一个包含图像并且工作正常,但是第二个需要整数值。

这是否可能,因为以下回调方法返回 UIView 类型而不是整数?肯定有办法解决这个问题吗?

-(UIView *)pickerView

任何帮助将不胜感激,非常感谢

4

1 回答 1

0

这?

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{   
    switch (component) {
    case 1:
    {
        UILabel *intvalue = view?(UILabel *)view:[[[UILabel alloc] initWithFrame:CGRectMake(0,0, 50, 40)] autorelease];
        intvalue.text = [NSString stringWithFormat:@"%d",value];
        intvalue.textAlignment = UITextAlignmentCenter;
        intvalue.backgroundColor = [UIColor clearColor];
        return intvalue;
        break;
    }'
}
于 2012-04-20T02:01:31.423 回答