別のクラスからメソッドを呼び出すと、次のエラーが発生します。
(TREAD) : EXC_BAD_ACCESS.
ここでクラスAの私の方法:
-(NSString*) parse: (NSString *) filePath
{
////do something
codeWriter* cd;
cd = [[codeWriter alloc]init];
NSString* asmLine = [cd getAsmLine:lineContent]; ////here is my problem
}
エラーが何であるかを理解するのを手伝ってくれる人はいますか?
ありがとう