0

在 uipickerview 中插入图像之前 在此处输入图像描述

在 uipickerview 中插入图像后

在此处输入图像描述

- (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;

}
4

1 回答 1

0

在您的代码中,您编写了以下代码:-

[label sendSubviewToBack:pview];

 [pview sendSubviewToBack: label];

我认为你在这里做错了..

你只需使用这个: -

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

删除这个

 [pview sendSubviewToBack: label];

它会工作得很好..如果不能随意问..享受..

于 2013-05-10T06:20:20.250 回答