遇到的几个iOS问题

1 unable to boot the simulator

跑模拟器的时候遇到这个报错,

解决方法 处理办法:

删除升级之前的模拟器缓存,重启模拟器。删除路径:~/Library/Developer/CoreSimulator/Cache

注意:后面可能还会复现这个报错,M的电脑尤其容易出现,然后再次删除,重新打开模拟器即可

presentViewcontroleler的问题

解决方法

设置 .modalPresentationStyle = UIModalPresentationOverCurrentContext;

presentView之后原来的窗口变小了

复制代码
  LBSlidePopViewController *vc = [[LBSlidePopViewController alloc] init];
    vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
    [self presentViewController:vc animated:YES completion:nil];

presentViewcontroller之后,背景变成黑色了

设置vc.modalPresentationStyle 成UIModalPresentationOverCurrentContext

复制代码
 LBSlidePopViewController *vc = [[LBSlidePopViewController alloc] init];
    vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
    [self presentViewController:vc animated:YES completion:nil];

绿色是上个页面的颜色,是要透露出来的

效果如图

相关推荐
RyanGo1 小时前
iOS断点下载
ios·swift
蒙小萌19932 小时前
找工作-iOS开发-3年经验-AI协作开发
ios
aerror3 小时前
Xbox One 控制器转换为 macOS HID 设备的工作原理分析
macos·xbox
丶皮蛋菌4 小时前
关于OC与Swift内存管理的解惑
ios
杂雾无尘5 小时前
掌握生死时速:苹果应用加急审核全攻略!
ios·swift·apple
晴风向上5 小时前
mac mini m4安装node.js@16以下版本方法
macos·node.js
HarderCoder5 小时前
Swift 6.2 中的 `@concurrent`
ios·swift
JPCstorm6 小时前
Mac homebrew 安装教程
macos
秋窗76 小时前
Mac 部署Latex OCR并优化体验(打包成App并支持全局快捷键)
macos·ocr·latex
Digitally7 小时前
如何将文件从 iPhone 传输到 Android(新指南)
android·ios·iphone