@@ -869,6 +869,7 @@ - (BOOL)openLeftViewAnimated:(BOOL)animated options:(UIViewAnimationOptions)opti
869
869
} completion: ^(BOOL finished) {
870
870
if (completed) completed (self);
871
871
if (callDelegate) [self performDelegate: @selector (viewDeckControllerDidOpenLeftView:animated: ) animated: animated];
872
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
872
873
}];
873
874
874
875
return YES ;
@@ -909,6 +910,7 @@ - (BOOL)openLeftViewBouncing:(IIViewDeckControllerBlock)bounced options:(UIViewA
909
910
} completion: ^(BOOL finished) {
910
911
if (completed) completed (self);
911
912
if (callDelegate) [self performDelegate: @selector (viewDeckControllerDidOpenLeftView:animated: ) animated: YES ];
913
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
912
914
}];
913
915
}];
914
916
@@ -943,6 +945,7 @@ - (BOOL)closeLeftViewAnimated:(BOOL)animated options:(UIViewAnimationOptions)opt
943
945
[self performDelegate: @selector (viewDeckControllerDidCloseLeftView:animated: ) animated: animated];
944
946
[self performDelegate: @selector (viewDeckControllerDidShowCenterView:animated: ) animated: animated];
945
947
}
948
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
946
949
}];
947
950
948
951
return YES ;
@@ -981,6 +984,7 @@ - (BOOL)closeLeftViewBouncing:(IIViewDeckControllerBlock)bounced callDelegate:(B
981
984
[self performDelegate: @selector (viewDeckControllerDidCloseLeftView:animated: ) animated: YES ];
982
985
[self performDelegate: @selector (viewDeckControllerDidShowCenterView:animated: ) animated: YES ];
983
986
}
987
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
984
988
}];
985
989
}];
986
990
@@ -1085,6 +1089,7 @@ - (BOOL)openRightViewAnimated:(BOOL)animated options:(UIViewAnimationOptions)opt
1085
1089
} completion: ^(BOOL finished) {
1086
1090
if (completed) completed (self);
1087
1091
if (callDelegate) [self performDelegate: @selector (viewDeckControllerDidOpenRightView:animated: ) animated: animated];
1092
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
1088
1093
}];
1089
1094
1090
1095
return YES ;
@@ -1125,6 +1130,7 @@ - (BOOL)openRightViewBouncing:(IIViewDeckControllerBlock)bounced options:(UIView
1125
1130
} completion: ^(BOOL finished) {
1126
1131
if (completed) completed (self);
1127
1132
if (callDelegate) [self performDelegate: @selector (viewDeckControllerDidOpenRightView:animated: ) animated: YES ];
1133
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
1128
1134
}];
1129
1135
}];
1130
1136
@@ -1159,6 +1165,7 @@ - (BOOL)closeRightViewAnimated:(BOOL)animated options:(UIViewAnimationOptions)op
1159
1165
[self performDelegate: @selector (viewDeckControllerDidCloseRightView:animated: ) animated: animated];
1160
1166
[self performDelegate: @selector (viewDeckControllerDidShowCenterView:animated: ) animated: animated];
1161
1167
}
1168
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
1162
1169
}];
1163
1170
1164
1171
return YES ;
@@ -1193,6 +1200,7 @@ - (BOOL)closeRightViewBouncing:(IIViewDeckControllerBlock)bounced callDelegate:(
1193
1200
if (completed) completed (self);
1194
1201
[self performDelegate: @selector (viewDeckControllerDidCloseRightView:animated: ) animated: YES ];
1195
1202
[self performDelegate: @selector (viewDeckControllerDidShowCenterView:animated: ) animated: YES ];
1203
+ UIAccessibilityPostNotification (UIAccessibilityScreenChangedNotification, nil );
1196
1204
}];
1197
1205
}];
1198
1206
0 commit comments