Xcode iPad UIActionSheet z wieloma przyciskami nie wyświetla się poprawnie iOS7

Na iPadzie nowy ios 7 UIActionSheet nie jest poprawnie wyświetlany z dużą ilością przycisków.

Nie czyszczenie tła UIActionSheet podczas przewijania. Przyciski wydają się zamrożone w tle UIActionSheet.

zrzut ekranu z problemem

Mój kod:

UIActionSheet *popupQuery = [[UIActionSheet alloc]; 
for (int i=0; i<[ParamAllList count]; i++) 
{ 
    NSMutableDictionary *Param = [ParamAllList objectAtIndex:i]; 
    [popupQuery addButtonWithTitle:[Param valueForKey:@"name"]]; 
    [[[popupQuery valueForKey:@"_buttons"] objectAtIndex:[[popupQuery valueForKey:@"_buttons"] count]-1] setImage:[UIImage imageNamed:@"add40icon.png"] forState:UIControlStateNormal];
} 
popupQuery.actionSheetStyle = UIActionSheetStyleAutomatic; 
[popupQuery showFromRect:Button_Settings.frame inView:Button_Settings.superview animated:YES];

questionAnswers(2)

yourAnswerToTheQuestion