PGPickerView icon indicating copy to clipboard operation
PGPickerView copied to clipboard

PGPickerView是将UIPickerView的弯曲弧度变成直列表,可以是单列表,多列表,还可以修改选中label的字体颜色等。

Results 10 PGPickerView issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/12879534/46256233-79ca0f00-c4da-11e8-96ec-870a56e95d38.png) pickerview的高度与底部视图的高度一样活着小的话 会多出一行。出现数组越界

bug已解决,是因为UIPickerView和PGPickerView在使用上有小小的差异 另外有一个问题: PGPickerColumnView.h里定义的refresh属性有什么作用吗?没有找到相关代码 `@property (nonatomic, assign) BOOL refresh;`

例如省市区这种components联动的情况。 1、[pickerView selectedRowInComponent:0];这里返回了-1 2、滚动到最后一个row再往上拉,就crash了

这个滑动一点都不平滑啊,一卡一卡的,还经常往回滑动一下

因为想要在滑动中,就能搞表之间的联动。比如自定义12小时制度的选择时间器,我最左边的一列设置了上下午,我想要根据12小时制度的一列来调整上下午,但是pickerView:(PGPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component 代理方法,只有在停止滑动时才会响应。所以能不能放出一个滑动中的代理,这样就可以在滑动中也能做到表之间的联动。

前提在isCycleScroll为YES 接着设置第一个程序崩溃,isCycleScroll为NO的情况程序正常执行 ``` [self.pickerView selectRow:0 inComponent:0 animated:true]; ``` 报错位置 ``` - (void)selectRow:(NSInteger)row animated:(BOOL)animated { NSInteger newRow = row; if (self.isCycleScroll) { newRow = row - self.copyOffsetCount; } if (animated) {...

centerTableView.contentOffset = CGPointMake(0, row * blockSelf.rowHeight); 修改成 centerTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] atScrollPosition:(UITableViewScrollPositionTop) animated:NO]; 可修复

你好,我在下载使用PGDatePicker的Demo的时候。给“年月日时分秒”设置了datePicker.isHiddenWheels = NO; ![](https://user-images.githubusercontent.com/20350701/50419697-18ad9f80-086d-11e9-8e1c-967576ccea1f.png) 发现在真机上滚轮显示有问题(我的真机,iPhone X iOS12.1),在模拟器iOS10、iOS12测试都没出现问题 ![](https://user-images.githubusercontent.com/20350701/50419717-3a0e8b80-086d-11e9-80cd-1ac849a25e42.png) 希望你有时间能看一下处理一下,谢谢。