我是xcode的新手,我尝试在您登录并访问相机的地方制作应用,您可以在其中调整手动控制。
有一个登录/注册视图控制器,它在segue到相机和手动控件的第二个视图控制器崩溃(代码主要基于Apple示例代码):在iPhone上运行时然后它会出现错误 *由于未捕获的异常终止应用程序' NSUnknownKeyException',原因:' [setValue:forUndefinedKey:]:此类不是密钥值编码兼容的密钥durationLabel 。' *
我已经检查了故事板和连接,所有的出口和行动似乎都很好。我删除并为错误所说的不符合"编码兼容"的任何插座建立了新的连接,但它一直为新的插座提供此错误(之前是#34; isoLabel,现在是" durationLabel&#34)。究竟是什么导致了这个? 抱歉格式错误。附图也是。谢谢你的帮助
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="NewBinding0" maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647" />
</netTcpBinding>
</bindings>
<services>
<service name="Project1Server.Project1Service">
<endpoint address="net.tcp://localhost:9000/Project1Service" binding="netTcpBinding"
bindingConfiguration="" name="Project1EndPoint" contract="Project1Interfaces.IProject1Service" />
</service>
</services>
</system.serviceModel>
</configuration>