Error when debugging on 7.1 device swift xcode6 beta 3

前端 未结 4 1587
醉酒成梦
醉酒成梦 2021-01-04 05:37

I have a project that worked fine in beta2 but now it\'s broken with the following runtime error.

dyld: Symbol not found: __TWPVSs26AutoreleasingUnsafePointe         


        
相关标签:
4条回答
  • 2021-01-04 05:38

    cleaning DerivedData folder resolves the issue.

    0 讨论(0)
  • 2021-01-04 05:40

    I was getting the same error and I solved it by:

    1. Opening the organizer in XCode 6 Beta3 (Window -> Organizer)

    2. Selecting the "Projects" tab at the top

    3. Selecting my project in the left hand side column

    4. Selecting the "Delete..." button next to the Derived Data location

    My swift application now runs on iOS 7.1.2 on my iPhone 4

    0 讨论(0)
  • 2021-01-04 05:58

    I had to add import Foundation to the first line of my AppDelegate.swift file (Xcode 6 Beta 3)

    0 讨论(0)
  • 2021-01-04 06:05

    I solved this by deleting the cached files in ../DerivedData/* and ~/Library/Caches/com.apple.dt.Xcode

    0 讨论(0)
提交回复
热议问题