Xcode 6.1:快照未渲染的视图

我为我的示例项目使用了故事板。 该架构是Login View Controller和Home PageView控制器。 用户单击Home PageView控制器中的按钮以启动本地通知。

-(IBAction)startLocalNotification {  // Bind this method to UIButton action
    NSLog(@"startLocalNotification");

    UILocalNotification *notification = [[UILocalNotification alloc] init];
    notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:7];
    notification.alertBody = @"This is local notification!";
    notification.timeZone = [NSTimeZone defaultTimeZone];
    notification.soundName = UILocalNotificationDefaultSoundName;
    notification.applicationIconBadgeNumber = 10;

    [[UIApplication sharedApplication] scheduleLocalNotification:notification];
}

这段代码进入AppDelegate文件:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]){

        [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
    }

    [launchOptions valueForKey:UIApplicationLaunchOptionsLocalNotificationKey];
    // Override point for customization after application launch.

    return YES;
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
 [UIApplication sharedApplication].applicationIconBadgeNumber = 0;
     NSLog(@"didReceiveLocalNotification");
}

现在,在推送应用程序到后台状态后,我在控制台中获取了下面的消息,但本地通知正常工作正常。

对未呈现的视图进行快照会产生空的快照。 确保您的视图在屏幕更新后的快照或快照之前已呈现至少一次。

这条消息与什么有关?


我有我认为可以站起来作为'答案'...这就是说,几乎肯定没有错,但也许是iOS(8.1.3 / 8.2)的问题。 据我所知,这是无害的。

我玩过这个,发现它与UITextField / Keyboard有关。

因此,只有文本字段的单一视图应用程序,请按照以下步骤操作(仅在iPad上试用):

  • 构建并运行
  • 将焦点放在文本字段中
  • 关闭键盘(它应该已经打开)
  • 点击主页按钮(应用程序进入后台)
  • 返回到应用程序
  • 点击主页按钮(应用程序进入后台)
  • 观察日志输出。
  • 以下是一个示例项目:https://github.com/duttski/TestForStrangeSnapshotMessage。

    归档为错误,并试图通过开发论坛获取一些信息。

    更新:我认为这可能会在更高版本中修复。 但我没有测试过它。 在开发论坛上发言之后,我被告知这不是值得担心的事情。

    链接地址: http://www.djcxy.com/p/24975.html

    上一篇: Xcode 6.1 : Snapshotting a view that has not been rendered

    下一篇: AngularJS parent directive communicate with child directive