You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this errors in building CoreResource
"_$F", referenced from:
-[CoreTableController controllerDidChangeContent:] in CoreTableController.o
ld: symbol(s) not found for architecture armv7
collect2: ld returned 1 exit status
"_$F", referenced from:
-[CoreTableController controllerDidChangeContent:] in CoreTableController.o
ld: symbol(s) not found for architecture armv6
collect2: ld returned 1 exit status
so modify source
from 140 line in CoreTableController.m
self.tableReloadDelay = $F(defaultTableReloadDelay);
to
self.tableReloadDelay = [NSNumber numberWithFloat:defaultTableReloadDelay];
The text was updated successfully, but these errors were encountered:
this errors in building CoreResource
"_$F", referenced from:
-[CoreTableController controllerDidChangeContent:] in CoreTableController.o
ld: symbol(s) not found for architecture armv7
collect2: ld returned 1 exit status
"_$F", referenced from:
-[CoreTableController controllerDidChangeContent:] in CoreTableController.o
ld: symbol(s) not found for architecture armv6
collect2: ld returned 1 exit status
so modify source
from 140 line in CoreTableController.m
self.tableReloadDelay = $F(defaultTableReloadDelay);
to
self.tableReloadDelay = [NSNumber numberWithFloat:defaultTableReloadDelay];
The text was updated successfully, but these errors were encountered: