Denis Kutlubaev
Denis Kutlubaev
There is a workaround. Create blank UIImage of a size that you want you button be and set is as a background. ``` let skipButton = UIButton(type: .custom) skipButton.frame =...
Yes, `2.1.2` is broken, function `exportDrawing()` doesn't work. Use `2.1.1`.
I solved this issue by forking `ParallaxHeader`, setting `clipsToBounds` to false and bringing by scrollViews contentView to the front by `scrollView.bringSubview(toFront: contentView)`.
pod 'ParallaxHeader', git: 'https://github.com/wzbozon/ParallaxHeader'
Workaround for `guard`: ``` // swiftlint:disable indentation_width guard true, true else { return } ```
Yes, sure
Workaround is to use `.alert` style for iPad: ``` let alertControllerStyle: UIAlertController.Style = (UIDevice.current.userInterfaceIdiom == .pad) ? .alert : .actionSheet UIAlertController.rx.show(in: self, title: nil, message: nil, buttons: buttons, preferredStyle: alertControllerStyle)...