can we use UICollectionView inside notification content extension?

423 Views Asked by At

I want to a horizontal scrolling view(UIColectionView or iCarousal view) inside notification content extension but it is not scrolling.

I just added a simple collection view with 5 cells but it's loading only first cell and it's not scrolling. So is it possible to do or not?

Any help is appreciated in advance!!!!

1

There are 1 best solutions below

0
Nikita Srivastava On

You need to add Userintercation Enabled Under NSExtensionAttributes in your Notification Content Extension Info pList File.

<dict>
            <key>UNNotificationExtensionCategory</key>
            <string>carousel</string>
            <key>UNNotificationExtensionDefaultContentHidden</key>
            <false/>
            <key>UNNotificationExtensionInitialContentSizeRatio</key>
            <real>1</real>
            <key>UNNotificationExtensionUserInteractionEnabled</key>
            <true/>
        </dict>