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
I am trying to add 3 dropdown textfields on a custom view class like this
import iOSDropDown
class Profiledetails: UIView,UITableViewDelegate,UITableViewDataSource {
and on this override func awakeFromNib() {
super.awakeFromNib()
} I added dropdown textfield with options ,but when selecting no list is showing up ,when I checked in showlist
public func showList() {
if parentController == nil {
parentController = parentViewController
}
backgroundView.frame = parentController?.view.frame ?? backgroundView.frame
pointToParent = getConvertedPoint(self, baseView: parentController?.view)
parentController?.view.insertSubview(backgroundView, aboveSubview: self). parent controller I am getting it as nil ,but the same code in viewdidload is working fine in another view controller in storyboard .is there anything wrong in doing in awakefromnib.can anyone help me with this to fix the issue
The text was updated successfully, but these errors were encountered:
I am trying to add 3 dropdown textfields on a custom view class like this
import iOSDropDown
class Profiledetails: UIView,UITableViewDelegate,UITableViewDataSource {
and on this override func awakeFromNib() {
super.awakeFromNib()
} I added dropdown textfield with options ,but when selecting no list is showing up ,when I checked in showlist
public func showList() {
if parentController == nil {
parentController = parentViewController
}
backgroundView.frame = parentController?.view.frame ?? backgroundView.frame
pointToParent = getConvertedPoint(self, baseView: parentController?.view)
parentController?.view.insertSubview(backgroundView, aboveSubview: self). parent controller I am getting it as nil ,but the same code in viewdidload is working fine in another view controller in storyboard .is there anything wrong in doing in awakefromnib.can anyone help me with this to fix the issue
The text was updated successfully, but these errors were encountered: