在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;
}
答案 0 :(得分:0)
在你的代码中你写了这个: -
[label sendSubviewToBack:pview];
[pview sendSubviewToBack: label];
我认为你在这里犯了错误。
你只需使用它: -
[label sendSubviewToBack:pview];
[label addSubview:pview];
删除此
[pview sendSubviewToBack: label];
它会正常工作......如果没有随意问... ..快乐..