We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5183e53 + bd9a00e commit eab1a55Copy full SHA for eab1a55
1 file changed
MMTabBarView/MMTabBarView/MMTabBarView.m
@@ -202,19 +202,20 @@ - (void)viewDidMoveToWindow {
202
}
203
204
- (void)viewWillStartLiveResize {
205
+ [super viewWillStartLiveResize];
206
for (MMAttachedTabBarButton *aButton in self.attachedButtons) {
207
[aButton.indicator stopAnimation:self];
208
- [self setNeedsDisplay:YES];
209
210
211
-(void)viewDidEndLiveResize {
212
213
- [aButton.indicator startAnimation:self];
+ [aButton.indicator performSelector:@selector(startAnimation:) withObject:nil afterDelay:0.0];
214
215
216
[self _checkWindowFrame];
217
[self update:NO];
218
+ [super viewDidEndLiveResize];
219
220
221
- (void)resetCursorRects {
0 commit comments