NSInvalidUnarchiveOperationException ipad 1

时间:2013-02-09 11:52:38

标签: ios xcode

如果我在ipad 3 ios 6.1上运行我的应用程序,应用程序工作正常,但如果我在ipad 1 ios 5.1上运行它,我收到此错误并且应用程序崩溃:

2013-02-09 12:20:58.434 Splash-it[531:707] *** Terminating app due to uncaught exception     'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named    UIStoryboardEmbedSegueTemplate'
*** First throw call stack:
(0x3583d88f 0x33461259 0x3583d789 0x3583d7ab 0x3322454d 0x332246bb 0x33224423 0x33122905 0x331b5c13 0x33224b1b 0x33224423 0x331b5839 0x33224b1b 0x332246bb 0x33224423 0x331b4fc5 0x332b5a5d 0x332b5b8f 0x330ec403 0x32f756eb 0x32f6f72f 0x32f3dac3 0x32f3d567 0x32f3cf3b 0x3352f22b 0x35811523 0x358114c5 0x35810313 0x357934a5 0x3579336d 0x32f6e86b 0x32f6bcd5     0x66aa5 0x5b598)
terminate called throwing an exception

此错误的含义是什么?

2 个答案:

答案 0 :(得分:2)

嵌入segues是一个iOS 6+功能 - 它们无法在iOS5或更低版本上运行

答案 1 :(得分:0)

Rich Tolley写了“仅限iOS 6”,但您可以尝试将其移植到iOS5 https://github.com/RolandasRazma/RRContainerView

相关问题