Xcode 4.2 Compilation Failed with prototype cell

前端 未结 7 1926
陌清茗
陌清茗 2021-02-06 05:54

I\'m trying out the new Xcode 4.2 Beta and I\'m wondering if my code is wrong or if I\'m bumping in to an bug.

The new Storyboard feature is promising but extremely bug

7条回答
  •  一向
    一向 (楼主)
    2021-02-06 06:00

    I've run into this problem on a couple of occasions in Xcode 4.2 (final release as well).

    It's usually related to an outlet or other connection that you've set up that the compiler is upset about (for lack of a better term). The trick is determining which connection(s) that is.

    You can view the detailed output of the build process in Xcode 4.2 by doing the following:

    1. Switch to the log navigator in the leftmost pane
    2. Select "Build "
    3. You should see the error(s), including your compilation failed error.
    4. You can expand the build log for that error by clicking the right most icon (looks like a list). That should expand and display the error causing the problems.

提交回复
热议问题