Hassan-Aftab / HADropDown

iOS Control for Drop Down Menu
Other
58 stars 8 forks source link

[SELF-SOLVED] Flash indicators in dropdown when it opens #6

Closed rursache closed 7 years ago

rursache commented 7 years ago

add the following func in HADropDown:

func flash() {
    self.table.flashScrollIndicators()
}

add the following delegate in your class:

func didShow(dropDown: HADropDown) {
    self.dropdown.flash()
}