is there any way to ignore touch event before fmdb complete it's database sequence
for instance, i do a database pulling so i dont want user to tap on the screen before the database process completed
i've tried using
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
[databaseHandler saveAllData];
[[UIApplication sharedApplication]endIgnoringInteractionEvents];
but it doesn't work
thanks