0

特定の場所でバックグラウンドから戻ると、アプリケーションがクラッシュします。

-[UITableViewCellContentView updateToInterfaceOrientation]: unrecognized selector sent to instance 0x165470
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCellContentView updateToInterfaceOrientation]: unrecognized selector sent to instance 0x165470'

エラーは常に [UIScrollViewDelayedTouchesBeganGestureRecognizer updateToInterfaceOrientation] と似ていることがあります。

なぜこれが起こっているのか、私には本当にわかりません。どんな助けでも大歓迎です。

編集:わかりました、これは loadView メソッドでテーブルビューを作成する方法です:

int tableCells = [formDS.tableItems count];
    int tableHeight = FORM_TABLE_CELL_HEIGHT * (tableCells);
    UITableView *table = [[UITableView alloc] initWithFrame:CGRectMake(0, yCoord, FORM_TABLE_WIDTH, tableHeight) style:UITableViewStyleGrouped];
    [table setBackgroundView:nil];
    table.backgroundView.backgroundColor = UIColorFromRGB(FORM_BODY_COLOR);
    table.backgroundColor = UIColorFromRGB(FORM_BODY_COLOR);
    table.dataSource = self;
    table.delegate = self;
    [localContainerView addSubview:table];
4

1 に答える 1