xmartlabs/XLPagerTabStrip

The class inherited from BaseButtonBarPagerTabStripViewController cannot related Storyboard...

aitadeta1314 opened this issue · 1 comments

I create a class inherited from BaseButtonBarPagerTabStripViewController, you know, I want to customize a class. After drap a ViewController Signal View, related a custom class. It don't quick search the customize class. Does anyone have the same problem?Please....

Facing same issue only on < iOS 13. On version iOS 13 and above it is working fine.

Found solution-

In your pagerstrip controller write this-

override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?)   {
    print("init nibName style")
    super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
}

Then in didFinishLaunchingWithOptions do-

let _ = ProfileBottomVC(nibName: nil, bundle: nil)