Xcode 调试遇到的报错(持续更新)

一:XXXXX is automatically signed, but provisioning profile 6ef95cb2-d13f-4b42-a73a-ebe420e483d8 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor, or switch to manual signing in the project editor.

这里所说的就是要通过修改你的项目的.xcodeproj文件来解决上述的错误。

1,找到项目中的**.xcodeproj文件,点击右键,show package contents(打开包内容)。

2,打开后找到project.pbxproj文件,右键,点击open就好了。

3,打开这个文件后,按command + F,在这个文件中查找“PROVISIONING_PROFILE"或者 “6ef95cb2-d13f-4b42-a73a-ebe420e483d8”,找到这个 直接删除,保存。

二:The app delegate must implement the window property if it wants to use a main storyboard file.

在AppDelegate.h文件中添加代码:
@property (strong, nonatomic) UIWindow * window;

在AppDelegate.m文件中添加代码:
@synthesize window = _window;

三:Xcode 运行报错弹窗:The document “NSObjCRuntime.h” could not be saved. You don’t have permission.

1,进入perferences->locations,删掉DerivedData这个文件夹


derived data

2,强制关闭Xcode.

你可能感兴趣的:(Xcode 调试遇到的报错(持续更新))