FLEXTool / FLEX

An in-app debugging and exploration tool for iOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Browser realm db crash

skytoup opened this issue · comments

NSArray *rowIDs = [host.dbm queryRowIDsInTable:tableName];

-[FLEXDatabaseManager queryRowIDsInTable:] is a option selector

NSArray *rowIDs = nil;
if( [host.dbm respondsToSelector:@selector(queryRowIDsInTable:)] ) {
    rowIDs = [host.dbm queryRowIDsInTable:tableName];
}