我正在尝试为我现有的 iOS 7+ 应用程序创建一个 Today Extension(又名 Widget)。在 iOS 模拟器中,一切正常(大部分时间),但在我的设备上,小部件是空的 - 只显示标题/名称,但没有内容。
我发现了几个处理类似问题的线程,但它们都与 Swift 应用程序中的一些初始化问题有关。我使用的是 Objectiv-c 而不是 Swift。
这就是我所做的:
- 向我的应用程序添加了一个新的 Today Extension 目标。相应的方案也是自动创建的。
- 使用未更改的默认小部件时也会出现此问题。我只添加了 init 方法来查看它们是否被正确调用。所以小部件应该显示默认
Hello World
标签。
这是代码:
@interface TodayViewController () <NCWidgetProviding>
@end
@implementation TodayViewController
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self)
NSLog(@"initWithCoder");
return self;
}
- (id)init {
self = [super init];
if (self)
NSLog(@"init");
return self;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
NSLog(@"initWithNibName");
return self;
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)widgetPerformUpdateWithCompletionHandler:(void (^)(NCUpdateResult))completionHandler {
// Perform any setup necessary in order to update the view.
// If an error is encountered, use NCUpdateResultFailed
// If there's no update required, use NCUpdateResultNoData
// If there's an update, use NCUpdateResultNewData
completionHandler(NCUpdateResultNewData);
}
@end
选择小部件方案并在模拟器中运行时,选择“今天”作为容器后,小部件将正确显示。另外initWithCoder
被记录。
起初在设备上运行时,一切都按预期工作:今日屏幕出现并显示小部件。我的小部件也是如此,但没有任何内容。
然后 Xcode 显示以下消息:
失去与“测试设备”的连接 - 恢复与“测试设备”的连接并再次运行“com.example.MyApp.Widget”,或者如果“com.example.MyApp.Widget”仍在运行,您可以通过以下方式附加到它选择调试 > 附加到进程 > com.example.MyApp.Widget。
没有记录任何内容,我认为这是因为连接丢失。但是为什么小部件是空的?
我查看了设备日志,但没有崩溃。这个问题在我的 iPhone 6 (iOS 8.0) 和 iPad Air 2 (iOS 8.1) 上是一样的
非常感谢你!