菜鸟教程小白 发表于 2022-12-13 15:09:10

iphone - EXC_BAD_ACCESS -iPhone objective-c


                                            <p><p>我一直在尝试这个 Twitter api 的东西,它真的很令人困惑......</p>

<p>使用以下代码,我不断收到 EXC_BAD_ACCESS 错误访问...这里有什么问题?</p>

<pre><code>NSURL *followingURL = ;
// Pass in the parameters (basically &#39;.ids.json?screen_name=&#39;)
id fromIntToNum = ;
NSDictionary *parameters = ;
// Setup the request
twitterRequest = [ initWithURL:followingURL
                                                parameters:parameters
                                             requestMethod:TWRequestMethodGET];
// This is important! Set the account for the request so we can do an authenticated request. Without this you cannot get the followers for private accounts and Twitter may also return an error if you&#39;re doing too many requests
;
// Perform the request for Twitter friends
[twitterRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
    if (error) {
      /*
      // deal with any errors - keep in mind, though you may receive a valid response that contains an error, so you may want to look at the response and ensure no &#39;error:&#39; key is present in the dictionary
      NSLog(@&#34;%@&#34;,error);*/
    } else {
      /*NSError *jsonError = nil;
      // Convert the response into a dictionary
      NSDictionary *twitterGrabbedUserInfo = ;
      // Grab the Ids that Twitter returned and add them to the dictionary we created earlier
      NSLog(@&#34;%@&#34;, );*/
    }

}];
</code></pre>

<p>我将代码失败的那一行分开...</p>

<p>什么可能导致这个 Twitter API 问题?</p>

<p>以下行导致崩溃:::</p>

<pre><code>[twitterRequest performRequestWithHandler:^(NSData *responseData,
                NSHTTPURLResponse *urlResponse, NSError *error) {
</code></pre>

<p>我有时也会收到此错误:</p>

<pre><code>: unrecognized
</code></pre>

<p><strong>更新:我注释掉了处理程序并创建了 TwitterRequest 和 ivar,但它仍然崩溃...</strong></p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在您的 block 中,您会查找错误,但如果您遇到错误,请记录并继续。你应该写一个“else”语句,只有在没有错误的情况下才继续。</p>

<p>为什么不尝试注释掉处理程序中的所有代码 - 不要做任何事情 - 看看你是否遇到了崩溃。然后尝试仅使用错误代码。然后尝试使用 JSON 序列化,最后是最后一行。如果你能找到导致问题的部分,那会有所帮助。</p>

<p>另外,我怀疑 performRequestWithHandler: 不会阻塞,但希望您在请求已完成的 block 内通知您的类。如果是这样,则意味着“TWRequest *twitterRequest”应该是一个 ivar 或属性,并且您需要允许在处理程序完成时调用某些方法。您的崩溃可能是由于 ARC 在对象运行时重新分配了您的对象。</p>

<p>编辑:
请注意,TWRequest 类描述说:“使用 initWithURL:parameters:requestMethod: 方法初始化一个新创建的 TWRequest 对象,传递所需的属性值。”它说 PLURAL 属性,意思是多于 1。难道它也期望“credentialForAccount”属性?您必须阅读 twitter 文档才能找到所有必需的属性。</p>

<p>编辑2:
好吧,我们甚至不知道你是否能达到你的处理程序。把一个 NSLog 放在那里,但我怀疑它永远不会走那么远。如果为真,则剩下三种可能性:</p>

<p>a) 它不喜欢这个 URL(虽然这看起来不错)</p>

<p>b) 你缺少一些它期望的参数</p>

<p>c) id 不喜欢“theAccount”对象——它是一个有效的 ACAccount 对象吗?试试 NSLogging。</p>

<p>它必须是这三件事之一。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - EXC_BAD_ACCESS -iPhoneobjective-c ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11633026/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11633026/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - EXC_BAD_ACCESS -iPhone objective-c