Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active June 14, 2020 05:45
Show Gist options
  • Save apatronl/8773c7a2dc71a01b96a2d3d2263c0c9d to your computer and use it in GitHub Desktop.
Save apatronl/8773c7a2dc71a01b96a2d3d2263c0c9d to your computer and use it in GitHub Desktop.
@objc private func handleTogglePanelButtonTapped(_ sender: UIButton) {
UIView.animate(
withDuration: 0.3, delay: 0, options: .curveEaseIn,
animations: {
self.expandedStackView.subviews.forEach { $0.isHidden = !$0.isHidden }
self.expandedStackView.isHidden = !self.expandedStackView.isHidden
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment