第三方类库- 自定义StatusBar . MTStatusBarOverlay

git: https://github.com/myell0w/MTStatusBarOverlay


.调用

- (IBAction)show
{
    MTStatusBarOverlay *overlay = [MTStatusBarOverlay sharedInstance];
    
    //overlay.hidesActivity = NO;
    //overlay.historyEnabled = YES;
    
    overlay.animation = MTStatusBarOverlayAnimationFallDown;
    overlay.detailViewMode = MTDetailViewModeHistory;
    

    
    [overlay postMessage:@"one" animated:YES];
    [overlay postMessage:@"two" animated:YES];
    [overlay postMessage:@"three" animated:YES];

    //[overlay postMessage:@"this is one" duration:1 animated:YES];
    //[overlay postMessage:@"this is two" duration:1 animated:YES];
    //[overlay postMessage:@"this is three" duration:1 animated:YES];

}


.显示


你可能感兴趣的:(第三方类库- 自定义StatusBar . MTStatusBarOverlay)