菜鸟教程小白 发表于 2022-12-13 08:44:38

ios - 是什么???在 iOS 中的意思


                                            <p><p>我是 iOS 新手,我尝试编写的简单应用程序因以下原因而崩溃:</p>

<pre><code>2014-07-18 22:21:19.006 Weather Client *** Terminating app due to uncaught exception &#39;NSInvalidArgumentException&#39;, reason: &#39;- was unable to load a nib named &#34;WeatherClientViewController&#34;&#39;
*** First throw call stack:
(
    0   CoreFoundation                      0x017ec1e4 __exceptionPreprocess + 180
    1   libobjc.A.dylib                     0x0156b8e5 objc_exception_throw + 44
    2   CoreFoundation                      0x017ebfbb + + 139
    3   UIKit                               0x003497d6 - + 505
    4   UIKit                               0x00349e9d - + 302
    5   UIKit                               0x0034a0d3 - + 78
    6   UIKit                               0x0034a5d9 - + 35
    7   UIKit                               0x0026a267 - + 66
    8   UIKit                               0x0026a5ef - + 312
    9   UIKit                               0x0026a86b - + 49
    10UIKit                               0x002753c8 - + 65
    11Weather Client                      0x000023eb - + 715
    12UIKit                               0x0022514f - + 309
    13UIKit                               0x00225aa1 - + 1810
    14UIKit                               0x0022a667 - + 824
    15UIKit                               0x0023ef92 - + 3517
    16UIKit                               0x0023f555 - + 85
    17UIKit                               0x0022c250 _UIApplicationHandleEvent + 683
    18GraphicsServices                  0x037e1f02 _PurpleEventCallback + 776
    19GraphicsServices                  0x037e1a0d PurpleEventCallback + 46
    20CoreFoundation                      0x01767ca5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    21CoreFoundation                      0x017679db __CFRunLoopDoSource1 + 523
    22CoreFoundation                      0x0179268c __CFRunLoopRun + 2156
    23CoreFoundation                      0x017919d3 CFRunLoopRunSpecific + 467
    24CoreFoundation                      0x017917eb CFRunLoopRunInMode + 123
    25UIKit                               0x00229d9c - + 840
    26UIKit                               0x0022bf9b UIApplicationMain + 1225
    27Weather Client                      0x00002e3d main + 141
    28libdyld.dylib                     0x01e33701 start + 1
    29???                                 0x00000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
</code></pre>

<p>我想知道的是 ??? 的意义是什么?在第 29 行。我试过谷歌搜索,唯一的引用是?与三元运算符有关。谁能告诉我什么???是什么意思?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>调用堆栈上什么都没有了:</p>

<pre class="lang-none prettyprint-override"><code>27Weather Client                      0x00002e3d main + 141
28libdyld.dylib                     0x01e33701 start + 1
29???                                 0x00000001 0x0 + 1
</code></pre>

<p>第 28 帧是 <code>start</code>(运行时启动代码)调用程序的 <code>main</code> 函数的地方。在此之前(在您的程序的生命周期中)没有任何事情发生。</p>

<p>无论出于何种原因,在第一个真实帧之前的堆栈上都有一些值 <code>1</code>,并且堆栈遍历代码显然不知道(无效)地址处的函数是什么<code>1</code>.</p>

<p>真的没什么好担心的。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 是什么???在 iOS 中的意思,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24834037/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24834037/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 是什么???在 iOS 中的意思