iOS 8 Today Extension not working on device

2019-04-05 01:32发布

When I run my Today Extension on the simulator everything works fine and it displays the following as expected:

enter image description here

However when I run it on my devices (iPod touch and iPhone 5s) the body won't show (don't mind the title and icon, that was changed)

enter image description here

I attached the debugger to my extension and I got this:

enter image description here

I have no idea what all of this means...

I removed all code for the Today Extension to check if there was a problem with my code and nothing changed so I doubt theres a problem with my code. Any suggestions on how to fix this would be greatly appreciated.

(I do have app groups enabled if thats of any significance)

7条回答
劳资没心,怎么记你
2楼-- · 2019-04-05 01:54

Few points to remember while using app extensions

  • Bundle Identifier for the target extension should be com.companyName.AppName.ExtensionName

  • You need to have separate AppID for the target extension, with identifier specified as com.companyName.AppName.ExtensionName and create provisioning profile with this AppID.

  • Also, the appGroupID created should be embedded in both the AppIDs(for application as well as extension).

查看更多
淡お忘
3楼-- · 2019-04-05 01:57

Make sure extension target version

Please make sure your extension target version is correct. Xcode'd give you the highest version by default such as 8.3, and if your iOS version is lower than it, Xcode'd give your a crash.

查看更多
虎瘦雄心在
4楼-- · 2019-04-05 01:58

In my case I set preferred content size and it is starting working on device

self.preferredContentSize = CGSizeMake(UIScreen.mainScreen().nativeBounds.width, 100.0)

查看更多
霸刀☆藐视天下
5楼-- · 2019-04-05 02:03

I found out that I was accessing my app group with the wrong suitename. Just make sure you access the app group with "group.something.something" not just "something.something"

查看更多
霸刀☆藐视天下
6楼-- · 2019-04-05 02:03

Since you didn't share any piece of code, I cannot help you with a specific answer. Please try to debug your widget by using following steps Debug->Attach to Process->(select your widget from the menu) and debug your viewdidload viewwillappear and - (void)widgetPerformUpdateWithCompletionHandler:(void (^)(NCUpdateResult))completionHandler methods. Hope it helps.

查看更多
可以哭但决不认输i
7楼-- · 2019-04-05 02:04

I found the solution for my case. I just had to specify arm64 as valid architecture for the widget target.

On the Widget Target

Build Settings > Valid Architectures

I was having just armv7 and armv7s. I added arm64 and it worked like charm in my 5s device

查看更多
登录 后发表回答