我必须创建一个包含 14-16 个组件的 UIPickerView。一切都初始化并运行良好,但是,我在右侧得到一个奇怪的黑条(见图),这浪费了已经很紧的空间。
有没有办法摆脱它?还有没有办法摆脱组件之间的所有黑色间距和组件内部的灰线?
谢谢你。
(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:
(NSInteger)component reusingView:(UIView *)view
{
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];
[label setText:[numArray objectAtIndex:row]];
[label setTextAlignment:UITextAlignmentCenter];
[label setFont:[UIFont boldSystemFontOfSize:14]];
[label setBackgroundColor:[UIColor clearColor]];
return label;
}