My app runs fine but I've got a warning in Xcode 7.3.1 that says:
"Segues initiated directly from view controllers must have an identifier"
On my storyboard and also in my code all segues have identifiers
If I double click it takes me to the end of the source code for the view controller. There is no mention of segue there..
If I search the source code the only segue I see without an identifier is on the root view controller… Any Ideas?
Thanks!
<scene sceneID="9W3-l5-iKf">
<objects>
<navigationController automaticallyAdjustsScrollViewInsets="NO" id="CIC-k8-VJ6" sceneMemberID="viewController">
<toolbarItems/>
<navigationBar key="navigationBar" contentMode="scaleToFill" id="fS8-Bl-fda">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask"/>
</navigationBar>
<nil name="viewControllers"/>
<connections>
<segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="3Fr-zs-F5x"/>
</connections>
</navigationController>
<placeholder placeholderIdentifier="IBFirstResponder" id="twR-NF-oVo" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="-24" y="400"/>
</scene>