ios - 模态跳转返回报错
高洛峰
高洛峰 2017-04-17 15:47:20
0
2
181

模态跳转 返回的时候报错 reason: '-[UIView scrollView]: unrecognized selector sent to instance 0x7fb69e073cf0' 求解决

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(2)
黄舟

This general explanation is a type error
However, you can try the code and take a look. .

左手右手慢动作

Jump
DetailViewController *detail = [[DetailViewController alloc] init];

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:detail];

[detail addTitleViewWithTitle:@"品牌详情" size:18 image:nil];
[self.view.window.rootViewController presentViewController:nav animated:YES completion:nil];

Return
[self dismissViewControllerAnimated:YES completion:nil];
Some interfaces will report an error when returning, and some will be fine

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!