Quick header problem in Xcode 8 beta 6

When I try to create my application using Xcode 8 beta 6 (after converting Swift 2.2 to Swift 3 using the built-in tool), the automatically generated Swift header (TargetName-Swift.h) has some problem and this file showing is not found when I I import into my object header file c Note. It works fine in Xcode 7.3.1.

#import "Moji_App-Swift.h"
+4
source share
1 answer

As soon as I solve all other errors, this problem will be automatically solved, because the swift-header will not be generated until all fast files have been compiled.

+2
source

Source: https://habr.com/ru/post/1652166/


All Articles