※ ChatGPTを利用し、要約された質問です(原文:objective-c API実行でコアダンプ)
Objective-C API実行でコアダンプ iphone sdk objective-c
このQ&Aのポイント
Objective-Cを使用してiPhone SDKでAPIを実行する際にコアダンプが発生します。
コードの実行後すぐにコアダンプが発生するため、何か問題があるようです。
詳細なエラーメッセージやスタックトレースを取得することができます。
iphone sdk objective-c
http://www.atmarkit.co.jp/fsmart/articles/iphonesdk04/02.html
上記ページの通りに2ページまでプログラムを記載して実行したのですが、
実行後すぐにコアダンプしてしまいました。
何か問題なのかわかりません。
ご指導お願いします。
以下はコンソールのコアダンプ時の出力画面抜粋です。
2010-12-31 14:19:37.174 twitter_test[1222:207] -[URLLoader setConnection:]: unrecognized selector sent to instance 0x8900e30
2010-12-31 14:19:37.197 twitter_test[1222:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[URLLoader setConnection:]: unrecognized selector sent to instance 0x8900e30'
*** Call stack at first throw:
(
0 CoreFoundation 0x00db0be9 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x00f055c2 objc_exception_throw + 47
2 CoreFoundation 0x00db26fb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
3 CoreFoundation 0x00d22366 ___forwarding___ + 966
4 CoreFoundation 0x00d21f22 _CF_forwarding_prep_0 + 50
5 twitter_test 0x00002f0d -[URLLoader loadFromUrl:method:] + 207
6 twitter_test 0x0000285d -[twitter_testViewController loadTimeLineByUserName:] + 442
7 twitter_test 0x00002a12 -[twitter_testViewController viewDidLoad] + 100
8 UIKit 0x0036765e -[UIViewController view] + 179
9 twitter_test 0x00002ae0 -[twitter_testAppDelegate application:didFinishLaunchingWithOptions:] + 74
10 UIKit 0x002ba1fa -[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 1163
11 UIKit 0x002bc55e -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 439
お礼
@synthesize connection; @synthesize data; が抜けてました。 回答ありがとうございます。