You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until I click on this drop everything is working fine in the app, The moment i click on this DropDown, no drop will appear even the app stopped working, in the console there is no error even my app is not crashing it just stopped working (Clicks, events, Navigations)
override func viewDidLoad() {
super.viewDidLoad()
txt_child.inputView = UIView() //So that I will not show keyboard on click
txt_child.optionArray = childNameArray //Child Array is an array of string
txt_Child.didSelect { selectedText, index, id in
print(selectedText)
}
}
The text was updated successfully, but these errors were encountered:
Until I click on this drop everything is working fine in the app, The moment i click on this DropDown, no drop will appear even the app stopped working, in the console there is no error even my app is not crashing it just stopped working (Clicks, events, Navigations)
Here is the code:
import iOSDropDown
@IBOutlet weak var txt_child: DropDown!
The text was updated successfully, but these errors were encountered: