XML パーサーが、 masterCodeListというデリゲートの NSMutable 配列を割り当てようとしています。次のコードから、これが失敗することがわかります。(私はまったくの初心者です。)
if (dataController.masterCodeList == nil){
dataController.masterCodeList =[[NSMutableArray alloc] init];
if (dataController.masterCodeList == nil) {
NSLog(@"the init of the mutable array did NOT work");
}
}
the init of the mutable array did NOT work
メッセージが毎回届きます。dataController ヘッダーをインポートしています。
#import "CodeDataController.h"
他にエラー メッセージは表示されません。パーサーは正常に解析しており、アプリはコンテンツなしでスムーズに実行されています。
前もって感謝します。