OStack程序员社区-中国程序员成长平台

标题: ios - 其 View 不在 NSNotification 中的窗口层次结构中 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:25
标题: ios - 其 View 不在 NSNotification 中的窗口层次结构中

我有错误 其 View 不在窗口层次结构中!

当我是 NSnotification 时

- (void) receiveTestNotificationNSNotification *) notification
{


    if ([[notification name] isEqualToString"TestNotification"])
        NSLog (@"Successfully received the test notification!");


    UIStoryboard *storyboard = [UIStoryboard storyboardWithName"Main" bundle:nil];
    mainTabViewController *vc = [storyboard instantiateViewControllerWithIdentifier"passID"];
    [vc setModalPresentationStyle:UIModalPresentationFullScreen];

    [self presentViewController:vc animated:YES completion:nil];

}



Best Answer-推荐答案


如果您想在单元格内显示事件 View ,
也许在标题旁边,你可以使用类似的东西,

 UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc]     initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
  [cell.imageView addSubview:activityView];
  [activityView startAnimating];

关于ios - 其 View 不在 NSNotification 中的窗口层次结构中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21472493/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4