キャッチされなかった例外'NSInvalidArgumentException'が原因でアプリを終了しています。理由:'-[__ NSCFType next]:認識されないセレクターがインスタンスに送信されました'この行は"[self autorelease];"であるため、このエラーが発生しています。この行にコメントすると、例外は発生しませんが、アプリが非常に遅いように見えるので、その行の代わりにその行を何を書いたのか教えてください
if(sqlite3_step(statement)==SQLITE_ROW) { pagestr = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement,0)]; //dateLabel.text=previousDate; //textView.text=pagestr; EditorPage* prev= [[EditorPage alloc] initWithNibName:@"EditorPage" bundle:nil]; prev.dateString= previousDate; prev.bodyString= pagestr; NSArray* array= [[NSArray alloc] initWithObjects:prev,@"forward",nil]; [[NSNotificationCenter defaultCenter] postNotificationName:@"next EditorPage" object:array]; [prev autorelease]; }