VirtualView-iOS icon indicating copy to clipboard operation
VirtualView-iOS copied to clipboard

在使用navigationController popVC的时候之前的页面是空白的,怎么处理?

Open AlexYangLe opened this issue 6 years ago • 1 comments

我使用demo,在page页里面,实现了代理方法:

  • (void)virtualViewClickedWithAction:(NSString *)action andValue:(NSString *)value{ if (action) { NSLog(@"action: %@, value: %@", action, value); [self.navigationController pushViewController:[[GridViewController alloc] initWithFilename:@"Grid"] animated:YES]; } } 我跳转到GridViewController,之后我popVC之后page页无法获取此页面的params参数,无法显示图片(无法加载URL),此时navigationController 中没有保存响应的VC,这里是怎么解决的?

AlexYangLe avatar Dec 05 '18 08:12 AlexYangLe

找个初始化VV的时间点,设置下[VVConfig setAlwaysRefresh:YES];,动态增量refresh的逻辑有点问题

HarrisonXi avatar Dec 07 '18 08:12 HarrisonXi