VPPDropDown
VPPDropDown copied to clipboard
VPPDropDown is an iOS library that allows you to create dropdown-like menus in a table view, as seen in old Twitter 3 for iPhone.
`- (BOOL)containsRelativeIndexPath:(NSIndexPath *)relativeIndexPath;` This method has been deprecated,Please provide new release with the updated methods.
Hello, 1) THANKS for the good code :) Really helpful. 2) If you have more than one dropDown in the tableView, how can you "collapse" the other open dropdowns when...
I need to have multiple number of dropdowns for particular Selection type, the number of sections and rows are gonna be sent from the API, and even if I initialize...
Hello, When I load the plugin it telle me that release and others forbidden in ARC …... Thanks
I tried calling - (UITableViewCell *) dropDown:(VPPDropDown *)dropDown cellForElement:(VPPDropDownElement *)element atGlobalIndexPath:(NSIndexPath *)globalIndexPath{ UITableViewCell *cell = [dropDown.delegate dropDown:dropDown cellForElement:element atGlobalIndexPath:globalIndexPath]; NSLog([cell.textLabel.textColor description]); cell.textLabel.textColor = [UIColor greenColor]; NSLog([cell.textLabel.textColor description]); return cell; }...
Hello, thanks for the code. I'm somewhat new to GitHub and I might have missed something, but is there any way to use this with a storyboard? I can't seem...