uncategorized Compilation Failed error in iOS5 Storyboard
error-handling, ios, storyboard
Solution
The problem is that you've got IBOutlets that link to prototype cells. Note that prototype cells are just that: prototypes. So you can have multiple instances of each. Therefore Xcode won't know which instance to link the IBOutlet variable to.
You'll have to wait until the cells are instantiated inside cellForRowAtIndexPath to assign the properties
Problem
I got a very strange error when compiling my app, it's just like in the picture below, anyone knows what's going on? Errors in log: error: Compilation Failed. ``` Underlying Errors: Description: Couldn't compile connection: <IBCocoaTouchOutletConnection:0x400d6f420 <IBProxyObject:0x400d6e080> => nameShow => <IBUILabel: 0x400c7e0c0> Description: Couldn't compile connection: <IBCocoaTouchOutletConnection:0x400d71200 <IBProxyObject:0x400d6e080> => catShow => <IBUILabel: 0x400bf9280> Description: Couldn't compile connection: <IBCocoaTouchOutletConnection:0x400d6ffc0 <IBProxyObject:0x400d6e080> => numShow => <IBUILabel: 0x400be0380> ```