We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
open func addPullUpController(_ pullUpController: PullUpController, initialStickyPointOffset: CGFloat, animated: Bool, completion: ((Bool) -> Void)? = nil) { assert(!(self is UITableViewController), "It's not possible to attach a PullUpController to a UITableViewController. Check this issue for more information: #14") addChild(pullUpController) pullUpController.setup(superview: view, initialStickyPointOffset: initialStickyPointOffset) if animated { pullUpController.pullUpControllerAnimate( action: .add, withDuration: 0.3, animations: { [weak self] in self?.view.layoutIfNeeded() // Thread 1: EXC_BAD_ACCESS (code=EXC_I386_GPFLT) }, completion: { didComplete in pullUpController.didMove(toParent: self) completion?(didComplete) } ) } else {... please help)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
open func addPullUpController(_ pullUpController: PullUpController,
initialStickyPointOffset: CGFloat,
animated: Bool,
completion: ((Bool) -> Void)? = nil) {
assert(!(self is UITableViewController), "It's not possible to attach a PullUpController to a UITableViewController. Check this issue for more information: #14")
addChild(pullUpController)
pullUpController.setup(superview: view, initialStickyPointOffset: initialStickyPointOffset)
if animated {
pullUpController.pullUpControllerAnimate(
action: .add,
withDuration: 0.3,
animations: { [weak self] in
self?.view.layoutIfNeeded() // Thread 1: EXC_BAD_ACCESS (code=EXC_I386_GPFLT)
},
completion: { didComplete in
pullUpController.didMove(toParent: self)
completion?(didComplete)
}
)
} else {...
please help)
The text was updated successfully, but these errors were encountered: