ばかげた質問のように聞こえます。mutableArray から読み取られる NSNumber として定義された変数からコンテンツを取得しようとしています。
NSNumber * nsnMoneyPerMonth;
nsnMoneyPerMonth=[[[myTableData objectAtIndex:0] objectAtIndex:myIndexPath.row]objectForKey:@"moneyPerMonth"];
int moneyPerMonth=sqlite3_column_int(statement, 1);
NSNumber *nsnumberMoneyPerMonth=[NSNumber numberWithInt:moneyPerMonth];
[NSMutableDictionary alloc]initWithObjectsAndKeys:nsnumberMoneyPerMonth,@"moneyPerMonth"
今、すべてが順調です。ただし、次のようなコード行を追加すると:
int intMoneyPerMonth=[nsnMoneyPerMonth intValue];
コンテンツを取得しようとすると、EXC_BAD_ACCESS がスローされます。
それで、私は何を間違っていますか?