iOS 8小部件,在应用程序组之间向前和向后共享数据

时间:2014-12-25 16:22:19

标签: ios ios-app-extension ios8-today-widget today-extension

我有一个消息应用程序,我开始创建一个小部件。 当用户打开应用程序时,会使用新消息更新核心数据。 我的愿望是:

- (void)widgetPerformUpdateWithCompletionHandler:(void (^)(NCUpdateResult))completionHandler

调用我将得到UIViewController并调用我的获取消息线程。 将UIViewController与我的小部件目标相关联会给我一个错误:

'sharedApplication' is unavailable....

所以我取消了它。

我想要实现的目标: 1.正在调用widgetPerformUpdateWithCompletionHandler 2.应用程序启动get messages thread /方法 3.完成后,它使用NSUserDefaults

将数据发送回小部件

我的代码:

1:

- (void)widgetPerformUpdateWithCompletionHandler:(void (^)(NCUpdateResult))completionHandler
{
    // Perform any setup necessary in order to update the view.

    [self startGetMessages];

    // If an error is encountered, use NCUpdateResultFailed
    // If there's no update required, use NCUpdateResultNoData
    // If there's an update, use NCUpdateResultNewData

    completionHandler(NCUpdateResultNewData);
}

2:

- (void)startGetMessages
{
    NSLog(@"%s", __PRETTY_FUNCTION__);

    NSBundle *deviceBundle = [NSBundle mainBundle];
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:deviceBundle];
    id MainController = [storyboard instantiateViewControllerWithIdentifier:@"MainTableViewController"];
    SEL getMessagesSelector = NSSelectorFromString(@"startGetMessages:");

    if (MainController)
    {
        NSThread *startGetMessagesThread = [[NSThread alloc] initWithTarget:MainController
                                                                   selector:getMessagesSelector
                                                                     object:StringForInt(HRTableDataSourceKindUpdate)];
        [startGetMessagesThread start];
    }
}

3:

- (void)notifyWidgetForChanges
{

    __block NSMutableDictionary *newMessages = [NSMutableDictionary new];

    NSArray *results = [CoreDataPhotoRecord MR_findAllSortedBy:@"message.originalDate"
                                                     ascending:NO
                                                 withPredicate:[NSPredicate predicateWithFormat:@"(message.delete_message == %@) AND (message.type.integerValue == %d) AND (message.originalDate >= %@)",
                                                                @NO, NORMAL_MESSAGE, _notiftWidgetDate]];

    NSLog(@"%s, _notiftWidgetDate: %@, newMessages.count: %d", __PRETTY_FUNCTION__, _notiftWidgetDate, newMessages.count);

    [results enumerateObjectsUsingBlock:^(CoreDataPhotoRecord *photoDetails, NSUInteger idx, BOOL *stop)
    {
        if (photoDetails != nil && photoDetails.message != nil)
        {
            NSString *cleanMobile = [[ABAddressBook sharedAddressBook] getCleanMobile:photoDetails.message.mobile];
            Contact *person = [[ABAddressBook sharedAddressBook] findContactWithPhoneNumber:cleanMobile];
            ContactWidget *contact = [[ContactWidget alloc] init];
            contact.name = (person != nil && person.name != nil && person.name.length > 0) ? person.name : cleanMobile;

            [newMessages setObject:contact forKey:cleanMobile];
        }
    }];

    [SharedUtilities archiveObject:newMessages.copy forKey:MESSAGES_KEY_NEW widget:true];

    [DEFAULTS_WIDGET setObject:@"111" forKey:@"111"];
    [DEFAULTS_WIDGET synchronize];

    newMessages = nil;
    results = nil;
}

widgetDefaults = [[NSUserDefaults alloc] initWithSuiteName:WIDGET_GROUP_NAME];

由于步骤2中的MainController为零,因此不会发生任何事情。 我该怎么办?

1 个答案:

答案 0 :(得分:1)

出现nil问题是因为您尝试从窗口小部件访问应用程序的故事板。这并不简单,因为包含应用程序和小部件扩展名保存在单独的包中。因此,步骤2中的[NSBundle mainBundle]与您应用中的Main.storyboard不同。

可能的解决方案包括:

  • 将扩展程序包中的应用Copy Bundle resources添加到小部件的目标Build Phases标签中的Main.storyboard列表中,或者只将小部件目标添加到MainController startGetMessages:列表中目标会员

  • 将负责从{{1}} 获取消息的代码移动到共享框架,该应用程序和小部件都可以访问,最好是可以访问专用对象。< / p>

第二个更好。根据经验,在进行面向对象的编程时,最好遵循 SOLID 原则,其中 S 代表单一责任< / strong>即可。 view controller 不应该负责提供系统范围内的消息提取。创建一个只有一个作业的专用对象 - 获取消息 - 并在目标之间共享它是一种方法。

有关如何创建共享框架的详细说明,请参阅文档:https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionScenarios.html#//apple_ref/doc/uid/TP40014214-CH21-SW1