-
Notifications
You must be signed in to change notification settings - Fork 194
Open
Description
Hi,
thanks for the great pod.
I'm using this in a Swift project, built on Xcode 6.2 beta.
But I'm having this error
[UIView setIsCustomPanel:]: unrecognized selector sent to instance 0x7fdfba507250
when trying to display the view.
My controller code:
class TourViewController: UIViewController, MYIntroductionDelegate {
override func viewDidLoad() {
super.viewDidLoad()
let frame = CGRectMake(0, 0, view.frame.size.width, view.frame.size.height),
introductionPanels = [
MYIntroductionPanel(frame: frame, nibNamed: "WelcomeTour1"),
MYIntroductionPanel(frame: frame, nibNamed: "WelcomeTour2"),
MYIntroductionPanel(frame: frame, nibNamed: "WelcomeTour3"),
MYIntroductionPanel(frame: frame, nibNamed: "WelcomeTour4")
],
introductionView = MYBlurIntroductionView(frame: frame)
introductionView.buildIntroductionWithPanels(introductionPanels)
introductionView.delegate = self
view.addSubview(introductionView)
}
}What could be the problem?
Metadata
Metadata
Assignees
Labels
No labels