标签: ios iphone swift uipickerview ios9.3
我正在使用swift和xcode7.3.1。我想在UIPickerView中为每一行添加分隔线。我想实现UIPickerview,如下面的截图
如何解决这个问题。请帮帮我
答案 0 :(得分:1)
使用-(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view方法,而不是使用titleForRow ..方法
-(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
titleForRow ..
此处创建自定义视图,包含标签和底线(UIView-为行)并返回该视图。
您将通过此步骤获得所需的效果。