8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iOS10でウィジェットのデザインが崩れる問題の対処法

Posted at

iOS10のウィジェットがそのままでは高さ固定になって崩れてしまう。

対処法
ウィジェットを広げるボタンを追加する

以下実装

swift

viewDidLoadとかに

self.extensionContext?.widgetLargestAvailableDisplayMode = NCWidgetDisplayMode.Expanded
func widgetActiveDisplayModeDidChange(_ activeDisplayMode: NCWidgetDisplayMÓode, withMaximumSize maxSize: CGSize) {
    if (activeDisplayMode == NCWidgetDisplayMode.compact) {
        self.preferredContentSize = maxSize;
    }
    else {
        self.preferredContentSize = CGSize(width: 0, height: 200);
    }
}

objective-c

viewDidLoadとかに

[self.extensionContext setWidgetLargestAvailableDisplayMode:NCWidgetDisplayModeExpanded];
- (void)widgetActiveDisplayModeDidChange:(NCWidgetDisplayMode)activeDisplayMode
                         withMaximumSize:-(CGSize)maxSize
{
    if (activeDisplayMode == NCWidgetDisplayModeCompact) {
        self.preferredContentSize = maxSize;
    }
    else {
        self.preferredContentSize = CGSizeMake(0, 200);
    }
}

これで広げてデザイン崩れを防げます:muscle:

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?