How to set the height of a Today Widget Extension?

35,444

Solution 1

In your widget UIViewController.m (Objective-C):

self.preferredContentSize = CGSizeMake(0, 200);

Will make your widget have a height of 200.

Note that the width will have no affect on the view, as widgets must fit in the exact width of notification center, which is handled automagically.

Also, if you want to animate changes in the height of your view, you can implement (Objective-C):

- (void)viewWillTransitionToSize:(CGSize)size
       withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator

in your view controller using -animateAlongsideTransition:completion:

The answer was a bit hidden; you had to click around in the documentation sidebar to eventually find this fantastic document.


Another way is to use auto-layout constraints to constrain your view's height.

Solution 2

Widgets have their heights adjusted by the system. If you have defined your height using constraints this will be automatically adjusted as required. If you're using explicit layout you can request a new height by modifying the preferredContentSize of your widget.

Note that you have no guarantee notification center will respect your height request: it may be adjusted automatically, it may be adjusted but not to the exact height you want, or it may not be honored at all.

The best way to develop a widget is to use auto-layout constraints to set your height values, that way your widget will adapt to different heights with ease.

Solution 3

Since iOS 10 extension's height is 110 pixels. You should use new protocol method widgetActiveDisplayModeDidChange:withMaximumSize: to extend extension size (Objective-C):

- (void)widgetActiveDisplayModeDidChange:(NCWidgetDisplayMode)activeDisplayMode
                         withMaximumSize:(CGSize)maxSize {

    if (activeDisplayMode == NCWidgetDisplayModeExpanded) {
        self.preferredContentSize = CGSizeMake(maxSize.width, 600.0);
    } else if (activeDisplayMode == NCWidgetDisplayModeCompact) {
        self.preferredContentSize = maxSize;
    }
}

Also you may need to call setWidgetLargestAvailableDisplayMode: on your extension context in today view controller's viewDidLoad method like this (Objective-C):

if ([self.extensionContext respondsToSelector:@selector(setWidgetLargestAvailableDisplayMode:)]) { // iOS 10+
    [self.extensionContext setWidgetLargestAvailableDisplayMode:NCWidgetDisplayModeExpanded];
} else {
    self.preferredContentSize = CGSizeMake(0, 600.0); // iOS 10-
}

This thread may be helpful https://forums.developer.apple.com/thread/48930

Solution 4

The best way is of course Autolayout but by default there are margins which you can control like this

func widgetMarginInsetsForProposedMarginInsets
    (defaultMarginInsets: UIEdgeInsets) -> (UIEdgeInsets) {
    return UIEdgeInsetsZero
}

Solution 5

There are two ways to display Today extension:

  1. Compact Mode (fixed height for Widget)
  2. Expand Mode (Variable height for Widget)

Whatever code you do to change the height of extension in Compact mode will not make any difference. So you need to change the mode from compact to Expand Mode.

// 1. Load This in viewDidLoad:

override func viewDidLoad() {
  super.viewDidLoad()
  self.extensionContext?.widgetLargestAvailableDisplayMode = NCWidgetDisplayMode.expanded
}

// 2. Implement another widget protocol

func widgetActiveDisplayModeDidChange(_ activeDisplayMode: NCWidgetDisplayMode, withMaximumSize maxSize: CGSize){
  if (activeDisplayMode == NCWidgetDisplayMode.compact) {
    self.preferredContentSize = maxSize;
  }
  else {
    self.preferredContentSize = CGSize(width: 0, height: 200);
  }
}

You can refer WWDC for more updates about App extensions

Share:
35,444
Gotschi
Author by

Gotschi

Interested in way too many things.

Updated on January 31, 2020

Comments

  • Gotschi
    Gotschi over 4 years

    How can i change the height of my App's Today Extension in the Notification Center?

    I tried it with the Interface Builder and with Code, the Interface Builder Displays the View with height 600, but it's not applying this height on the device.

    It seems I can't get it bigger than some 80 pixels...

    enter image description here

  • Gotschi
    Gotschi about 10 years
    +1 for the explanation and thanks for the answer! but auto-layout unfortunately didn't work for me in this situation :/
  • lxt
    lxt about 10 years
    If you're having problems with auto-layout not updating the height of your extension I'd try 1) visualizing the constraints with the new debugging tools in Xcode (to make sure your constraints are doing what you think they're doing), and if everything looks fine, 2) filing a bug because it should 'just work'.
  • Isaiah Turner
    Isaiah Turner about 10 years
    This is not the recommended method. As stated in the sessions, you should use auto layout.
  • Andrew
    Andrew about 10 years
    @IsaiahTurner Thanks. I haven't gotten a chance to watch yesterdays sessions online yet...
  • Andy Ibanez
    Andy Ibanez about 10 years
    This is a very helpful answer. It explains why my widgets aren't always as tell as I expect them to be. But where did you read this? I have read all the Today extensions documentation and I don't recall reading the system may decide whether it should be big or not.
  • lxt
    lxt about 10 years
    It's in the header files for the Notification Center framework.
  • jamil ahmed
    jamil ahmed almost 10 years
    How do you set the height constraint in IB for autolayout? I have my Today VC and it's View, but I can't set a height constraint on the view. The view has two subviews and I have setup those constraints...
  • Awesome-o
    Awesome-o almost 10 years
    I'm not sure "The best way to develop a widget is to use auto-layout constraints to set your height values, that way your widget will adapt to different heights with ease." is valid in all contexts. How would you use autolayout to specify the height if you're pulling data over a network and the height will then be dynamically calculated?
  • lxt
    lxt almost 10 years
    @Awesome-o: because auto-layout can allow for dynamic sizing to fit a view's content.
  • Matt R
    Matt R almost 10 years
    @jeffamaphone adding constraints to the subviews will determine the height, along with what iOS decides to allow. For instance, try adding a UILabel with 0 top and bottom margins and a set height to that main view. What I'm finding in practice is that I can get a height that is about one screenful of content. This kind of stinks for landscape mode on the iPhone where I'm only able to get a height of around 160 points.
  • jamil ahmed
    jamil ahmed almost 10 years
    Yeah, I had some trouble with it; kept coming out at zero height. Then the designers changed everything and I re-did everything and it seems okay now.
  • Vince Yuan
    Vince Yuan almost 10 years
    preferredContentSize does not work well in landscape mode. Looks like there is no enough room for the widget. @SantaClaus Could you please share some code of setting height with auto-layout?
  • emotality
    emotality over 7 years
    widgetActiveDisplayModeDidChange is for iOS 10 and above only.
  • DPR
    DPR over 7 years
    Bear in mind that the widget sizes (compact/expanded) are different on the iPad. Can't remember the exact values right now, but they are larger than the iPhone's widget size.
  • Enrico Susatyo
    Enrico Susatyo over 7 years
    You also need to set extensionContext?.widgetLargestAvailableDisplayMode = .expanded in order to get expanded mode.
  • GeneCode
    GeneCode over 7 years
    So how are we suppose to set it up if we want to support both below and above iOS10?
  • Anjali jariwala
    Anjali jariwala over 5 years
    @Lion, it works for me But i also want to scroll my widget as i've taken tableview to showing my content and i am having list of data to displat in widget. Would you please help me out if having any idea?