BRPickerView
BRPickerView copied to clipboard
UI建议:希望作者能添加支持左上右上圆角
trafficstars
有提供这个属性
/** 设置 alertView 弹框视图顶部左边和右边的圆角 */
@property (nonatomic, assign) NSInteger topCornerRadius;
// 设置弹框左上和右上的圆角
BRPickerStyle *customStyle = [[BRPickerStyle alloc]init];
customStyle.topCornerRadius = 16.0f;
pickerView.pickerStyle = customStyle;
好的,谢谢