I\'ve run into a slight complication with a project and need some assistance.
I recently purchased a Mac Mini and wish to begin working on some of my app projects from i
I would hazard a guess that the location that the project file is using is likely not the same as the one you copied over. This can happen easily if you pull in a file from outside your project directories. A quick manual reconnection can be done like so:
I don't know how my experience relates to yours, but I had the same issue and was finally able to resolve it by removing an activity indicator view via the storyboard's XML. Specifically, the code I removed was this:
<activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750” verticalHuggingPriority="750" hidesWhenStopped="YES" style="gray" id="XNx-FL-WkR">
<rect key="frame" x="15" y="80" width="20" height="20"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
</activityIndicatorView>
When I removed these lines of XML and switched back to the Interface Builder view, XCode removed an outlet the indicator was connected to (just one line).
Hope that helps someone! I'll update my answer if I find an explanation for why this fixed the problem for me.
If the error was after a git merge
, then i suggest you to clean the inferredMetricsTieBreakers
at your Storyboard
s bottom.
Source Code
(what else could you do?)inferredMetricsTieBreakers
block<segue reference=""/>
Interface Builder - Storyboard
This error can occur, when an additional but not installed font is used. Install this font and open the storyboard again.