Skip to content

Instantly share code, notes, and snippets.

@pgpt10
Created August 26, 2017 17:46
Show Gist options
  • Save pgpt10/ca3bebb995c1f98f57c52bf35d9cc554 to your computer and use it in GitHub Desktop.
Save pgpt10/ca3bebb995c1f98f57c52bf35d9cc554 to your computer and use it in GitHub Desktop.
func widgetActiveDisplayModeDidChange(_ activeDisplayMode: NCWidgetDisplayMode, withMaximumSize maxSize: CGSize)
{
if activeDisplayMode == .expanded
{
preferredContentSize = CGSize(width: 0.0, height: 300.0)
}
else
{
preferredContentSize = maxSize
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment