I experienced this bug with iOS 8. Both scroll views and other views with custom gestures were getting touches passed in when performing the swipe from the bottom gesture to reveal Control Center. I had some UIButtons near the bottom of the screen that would also begin tracking. None of these issues were happening with iOS 7 using the same gesture to reveal Control Center.
My fix for iOS 8 was to add the following code to my application delegate's applicationWillResignActive and applicationDidBecomeActive methods.
- (void)applicationWillResignActive:(UIApplication *)application
{
[application beginIgnoringInteractionEvents];
[UIView animateWithDuration:0.25 animations:^{
for (UIWindow *aWindow in application.windows)
{
aWindow.tintAdjustmentMode = UIViewTintAdjustmentModeDimmed;
}
}];
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
[UIView animateWithDuration:0.25 animations:^{
for (UIWindow *aWindow in application.windows)
{
aWindow.tintAdjustmentMode = UIViewTintAdjustmentModeAutomatic;
}
} completion:^(BOOL finished) {
[application endIgnoringInteractionEvents];
}];
}
This code basically shuts off all interaction for my app when it resigns active state. I also decided to set the tint mode to dimmed for all windows, which is my own choice to help the user understand my toolbar items and other UI that uses tintColor is not active.
When my app becomes active again, the app ends ignoring interaction events and restores the tint mode for windows back to automatic.
Hope this helps you.