美文网首页
Swift 相关 Bug

Swift 相关 Bug

作者: kimedison | 来源:发表于2019-07-23 14:39 被阅读0次

收集一些遇见的 bug

  1. "unable to find a suitable simulator device"

在升级 XCode 之后打开 playground,发现无法 run,遇到如上提示

解决:

  • 删除 Devices 文件夹
➜  ~ Library
➜  Library Developer
➜  Developer CoreSimulator
➜  CoreSimulator Devices
➜  Devices ..
➜  CoreSimulator rm -rf ./Devices
  • 退出 Xcode 和模拟器

  • 杀死模拟器进程

killall -9 com.apple.CoreSimulator.CoreSimulatorService
  • 重新运行 Xcode

相关文章

  • Swift 相关 Bug

    收集一些遇见的 bug "unable to find a suitable simulator device" ...

  • Bug相关

    jquery 相关 使用jq的toggle()、toggleClass() 、hide()、slideUp(),f...

  • swift BUG

    swiftBUG 1.required init?(coder aDecoder: NSCoder){ fatal...

  • Swift4 The latest is the best

    最近要开始学习Swift 因为发现翻墙看老外解决bug的代码 好多都是swift了 以前还是OC和Swift都有 ...

  • iOS相关bug

    一、iOS12键盘输入后不回弹 问题描述 iOS12系统下,h5或webview页面存在bug,键盘输入完毕收回后...

  • SwiftUI实战-轮播图

    无限轮播图 相关源码:ContentView.swift CustomLoopView.swift

  • Android Studio Bugs

    Android Studio 日常bug记录 1,界面预览相关bug The graphics preview i...

  • XCode注释的使用

    ```swift // FIXME: 待解决的bug // TODO: 需要实现的功能 // MARK: 不带下划...

  • Swift 相关

    OC与Swift的区别 Swift:容易阅读,结构简单,文件没有了.h.m,类型安全,速度快,运行性能高 swif...

  • NIO中存在的bug—epoll空轮询

    IO&NIO介绍 NIO中epoll空轮询表现 bug原因 JDK bug列表中有两个相关的bug报告: JDK-...

网友评论

      本文标题:Swift 相关 Bug

      本文链接:https://www.haomeiwen.com/subject/nhnolctx.html