如何在uipickerview中调出图像上的文字

时间:2013-05-10 05:51:01

标签: ios4 uipickerview xcode4.6 ios6.1

在uipickerview中插入图片之前 enter image description here

在uipickerview中插入图片后

enter image description here

- (UIView *) pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row
           forComponent:(NSInteger)component reusingView:(UIView *)view {
  CGRect imageFrame = CGRectMake(0.0, 0.5, 255, 250);
   UIImageView *label = [[UIImageView alloc]
                           initWithFrame:imageFrame];
label.backgroundColor=[UIColor scrollViewTexturedBackgroundColor];
  [label sendSubviewToBack:pview];

 [pview sendSubviewToBack: label];
  [pview addSubview:label];


 return label;

}

1 个答案:

答案 0 :(得分:0)

在你的代码中你写了这个: -

[label sendSubviewToBack:pview];

 [pview sendSubviewToBack: label];

我认为你在这里犯了错误。

你只需使用它: -

[label sendSubviewToBack:pview];
[label addSubview:pview];

删除此

 [pview sendSubviewToBack: label];

它会正常工作......如果没有随意问... ..快乐..