MTStatusBarOverlay icon indicating copy to clipboard operation
MTStatusBarOverlay copied to clipboard

iOS 9 beta 4 problem (iPad)

Open wmenge opened this issue 9 years ago • 7 comments

When testing the overlay in iOS 9 on iPad, the overlay takes over the entire screen and/or is positioned incorrectly. I have created a sample project with just the sample code:

-(IBAction)showStatus:(id)sender {

    MTStatusBarOverlay *overlay = [MTStatusBarOverlay sharedInstance];
    overlay.animation = MTStatusBarOverlayAnimationFallDown;  // MTStatusBarOverlayAnimationShrink
    overlay.detailViewMode = MTDetailViewModeHistory;         // enable automatic history-tracking and show in detail-view
    //overlay.delegate = self;
    overlay.progress = 0.0;
    [overlay postMessage:@"Following @myell0w on Twitter…"];
    overlay.progress = 0.1;
    // ...
    [overlay postMessage:@"Following myell0w on Github…" animated:NO];
    overlay.progress = 0.5;
    // ...
    [overlay postImmediateFinishMessage:@"Following was a good idea!" duration:2.0 animated:YES];
    overlay.progress = 1.0;

}

wmenge avatar Aug 03 '15 09:08 wmenge

Hello, please try this change, it helps in my case: https://github.com/nihilenz/MTStatusBarOverlay/commit/565488e26fdca4b85b594ec6616de4b8fcc8bed1

nihilenz avatar Sep 08 '15 20:09 nihilenz

@nihilenz it helped, thx!

pilot34 avatar Sep 19 '15 19:09 pilot34

@nihilenz Also helped Thanx!

Usipov avatar Sep 24 '15 12:09 Usipov

@wmenge Please close the issue

Usipov avatar Sep 30 '15 08:09 Usipov

@nihilenz This fix works great if the app is launched in portrait orientation, but appears to break if the app is launched in landscape.

timrossinfo avatar Oct 02 '15 03:10 timrossinfo

Hello, When we display message on status bar using MTStatusbaroverlay class then message doesn't display properly in portrait & landscape mode on iOS 9 devices. Its working fine on iOS 8 or lower devices.

skumawat avatar Dec 08 '15 06:12 skumawat

Any update regarding orientation issue on iPad IOS 9?

skumawat avatar Jul 15 '16 06:07 skumawat