AKPickerView icon indicating copy to clipboard operation
AKPickerView copied to clipboard

A simple yet customizable horizontal picker view.

Results 32 AKPickerView issues
Sort by recently updated
recently updated
newest added

It seems that the picker doesn't work anymore with the iOS 11 Bèta release. It won't slide horizontally anymore. Do you guys have the same problem? I had to change...

I want to set a index for picker view , for example 3

- (void)pickerView:(AKPickerView *)pickerView willSelectItem:(NSInteger)item; method added to delegate

``` - (void)reloadData { [self invalidateIntrinsicContentSize]; [self.collectionView.collectionViewLayout invalidateLayout]; [self.collectionView reloadData]; if ([self.dataSource numberOfItemsInPickerView:self]) { [self selectItem:self.selectedItem animated:NO notifySelection:NO]; } } ``` `if` statement should be changed to` if ([self.dataSource numberOfItemsInPickerView:self]...

I just need to update AKPickerView in response to NSFetchedResultsController delegate. However it doesnt work properly when I remove items from core data. Could you implement such methods like: pickerView.insertItem(atIndex:...

Supports I have an datasource with count is 10, and my selectedItem is 8. When I assign a new data source with count 5, it will crash. This PR fix...

` CGFloat distance = CGRectGetMidX(attributes.frame) - self.midX; CGFloat currentAngle = self.maxAngle * distance / self.width / M_PI; .... return attributes; break; ` Could you tell me why are you divide...

Hello any plans for updating the project to support swift 3.0? Kind regards, Dennis

We can mix the datasource array with string and dictionary for images

When I set the highlightedFont property with a larger font than the normal font property, the first item loaded has a larger font, but it remains that way no matter...