Skip to content

Instantly share code, notes, and snippets.

@jscalo
Created December 18, 2020 18:17
Show Gist options
  • Save jscalo/1b668f1e8cf9028fb7c2014767eecca2 to your computer and use it in GitHub Desktop.
Save jscalo/1b668f1e8cf9028fb7c2014767eecca2 to your computer and use it in GitHub Desktop.
private func viewPortZoomed() {
dataProvider?.summarySamples = nil
updateScrollViewSize()
CATransaction.begin()
CATransaction.setDisableActions(true)
update()
CATransaction.commit()
}
private func viewPortTranslated() {
CATransaction.begin()
CATransaction.setDisableActions(true)
update()
CATransaction.commit()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment