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
simply as said above:
If JJFloatingActionButton is a subview of UIStackView or is a customView of a UIBarButtonItem, it works (opens/closes) but all action items are not clickable. Is there a workaround to fix this?
The text was updated successfully, but these errors were encountered:
well i managed to accomplish it for my needs by simple introduction of variable and modifying open function like this:
func open(animated: Bool = true, completion: (() -> Void)? = nil) {
guard let superview = useDoubleSuperView ? superview?.superview : superview
.......
so it works perfectly, but you have to be sure its going to be a 100% double subview.
also it can be done by getting a rootViewController.
but maybe there is more elegant way doing this from the dev? :)
simply as said above:
If JJFloatingActionButton is a subview of UIStackView or is a customView of a UIBarButtonItem, it works (opens/closes) but all action items are not clickable. Is there a workaround to fix this?
The text was updated successfully, but these errors were encountered: