AZDropdownMenu
AZDropdownMenu copied to clipboard
Set a Row Selected.
thank you for this open Source POD. Great Job.
Is there any way i can set a menu already selected. I tried adding this code in your AZDropdownMenu, but of no use.
public var selectedposition : Int = 0{
didSet {
let indexPath = NSIndexPath.init(forRow: selectedposition, inSection: 0)
self.menuView.selectRowAtIndexPath(indexPath, animated: true, scrollPosition: UITableViewScrollPosition.None)
self.menuView.reloadData()
}
}
did you solve problem ?