123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- //
- // EBCustomBannerView.m
- // demo
- //
- // Created by pikacode@qq.com on 2017/10/20.
- // Copyright © 2017年 pikacode@qq.com. All rights reserved.
- //
- #import "EBCustomBannerView.h"
- #import "EBBannerView.h"
- #import <AudioToolbox/AudioToolbox.h>
- #import "EBMuteDetector.h"
- #import "EBBannerWindow.h"
- #import "EBBannerView+Categories.h"
- @interface EBCustomBannerViewMaker()
- @property(nonatomic, strong)UIView *view;
- @end
- @implementation EBCustomBannerViewMaker
- +(instancetype)makerWithView:(UIView*)view{
- EBCustomBannerViewMaker *maker = [EBCustomBannerViewMaker new];
- maker.portraitMode = EBCustomViewAppearModeTop;
- maker.landscapeMode = EBCustomViewAppearModeTop;
- maker.animationDuration = 0.3;
- maker.stayDuration = 4.0;
- maker.soundID = 0;
- maker.view = view;
- maker.landscapeFrame = view.frame;
- maker.portraitFrame = view.frame;
- maker.centerModeDurations = @[@0.3, @0.2, @0.1];
- maker.vibrateOnMute = YES;
- return maker;
- }
- @end
- @interface EBCustomBannerView()
- @property(nonatomic, strong)EBCustomBannerViewMaker *maker;
- @end
- @implementation EBCustomBannerView
- static NSMutableArray <EBCustomBannerView*>*sharedCustomViews;
- static EBBannerWindow *sharedWindow;
- +(void)sharedCustomBannerViewInit{
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- sharedWindow = [EBBannerWindow sharedWindow];
- sharedCustomViews = [NSMutableArray<EBCustomBannerView*> array];
- });
- }
- +(EBCustomBannerView*)showCustomView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block{
- EBCustomBannerView *bannerView = [EBCustomBannerView customView:view block:block];
- [bannerView show];
- return bannerView;
- }
- //make a custom view and show later
- +(EBCustomBannerView*)customView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block{
- EBCustomBannerView *bannerView = [EBCustomBannerView new];
- EBCustomBannerViewMaker *maker = [EBCustomBannerViewMaker makerWithView:view];
- bannerView.maker = maker;
- block(maker);
- [[NSNotificationCenter defaultCenter] addObserver:bannerView selector:@selector(applicationDidChangeStatusBarOrientationNotification) name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
- return bannerView;
- }
- -(void)applicationDidChangeStatusBarOrientationNotification{
- if (sharedCustomViews.count == 0) {
- return;
- }
- if ([self currentIsLandscape]) {
- [sharedCustomViews enumerateObjectsUsingBlock:^(EBCustomBannerView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
- obj.maker.view.frame = obj.maker.landscapeFrame;
- }];
- } else {
- [sharedCustomViews enumerateObjectsUsingBlock:^(EBCustomBannerView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
- obj.maker.view.frame = obj.maker.portraitFrame;
- }];
- }
- }
- -(void)show{
- [EBCustomBannerView sharedCustomBannerViewInit];
-
- [sharedCustomViews addObject:self];
-
- if (_maker.soundName || _maker.soundID != 0) {
- SystemSoundID soundID;
- if (_maker.soundName) {
- NSURL *url = [[NSBundle mainBundle] URLForResource:_maker.soundName withExtension:nil];
- AudioServicesCreateSystemSoundID((__bridge CFURLRef)(url), &soundID);
- } else {
- soundID = _maker.soundID;
- }
- WEAK_SELF(weakSelf);
- [[EBMuteDetector sharedDetecotr] detectComplete:^(BOOL isMute) {
- if (isMute && weakSelf.maker.vibrateOnMute) {
- AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
- } else {
- AudioServicesPlaySystemSound(soundID);
- }
- }];
- }
- [sharedWindow.rootViewController.view addSubview:_maker.view];
-
- if ([self currentAppearMode] == EBCustomViewAppearModeCenter) {
- dispatch_async(dispatch_get_main_queue(), ^{
- WEAK_SELF(weakSelf);
- UIView *view = weakSelf.maker.view;
- view.frame = [weakSelf showFrame];
- view.alpha = 0;
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[0].doubleValue animations:^{
- view.alpha = 1;
- }];
- view.alpha = 0;
-
- view.layer.shouldRasterize = YES;
- view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.4, 0.4);
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[1].doubleValue animations:^{
- view.alpha = 1;
- view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
- } completion:^(BOOL finished) {
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[2].doubleValue delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
- view.alpha = 1;
- view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1, 1);
- } completion:^(BOOL finished2) {
- view.layer.shouldRasterize = NO;
- if (weakSelf.maker.stayDuration > 0) {
- [NSTimer eb_scheduledTimerWithTimeInterval:weakSelf.maker.stayDuration block:^(NSTimer *timer) {
- [weakSelf hide];
- } repeats:NO];
- }
- }];
- }];
- });
- } else {
- _maker.view.frame = [self hideFrame];
- WEAK_SELF(weakSelf);
- [UIView animateWithDuration:_maker.animationDuration animations:^{
- weakSelf.maker.view.frame = [weakSelf showFrame];
- } completion:^(BOOL finished) {
- if (weakSelf.maker.stayDuration > 0) {
- [NSTimer eb_scheduledTimerWithTimeInterval:weakSelf.maker.stayDuration block:^(NSTimer *timer) {
- [weakSelf hide];
- } repeats:NO];
- }
- }];
- }
- }
- -(void)hide{
- if (!self.maker.view.superview) {
- return;
- }
- if ([self currentAppearMode] == EBCustomViewAppearModeCenter) {
-
- dispatch_async(dispatch_get_main_queue(), ^{
- WEAK_SELF(weakSelf);
- UIView *view = weakSelf.maker.view;
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[0].doubleValue animations:^{
- view.alpha = 0;
- }];
-
- view.layer.shouldRasterize = YES;
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[2].doubleValue animations:^{
- view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
- } completion:^(BOOL finished){
- [UIView animateWithDuration:weakSelf.maker.centerModeDurations[1].doubleValue delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
- view.alpha = 0;
- view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.4, 0.4);
- } completion:^(BOOL finished){
- [view removeFromSuperview];
- [sharedCustomViews removeObject:weakSelf];
- }];
- }];
- });
-
- } else {
- WEAK_SELF(weakSelf);
- [UIView animateWithDuration:_maker.animationDuration animations:^{
- weakSelf.maker.view.frame = [weakSelf hideFrame];
- } completion:^(BOOL finished) {
- if (weakSelf.maker.view.superview) {
- [weakSelf.maker.view removeFromSuperview];
- }
- if ([sharedCustomViews containsObject:weakSelf]) {
- [sharedCustomViews removeObject:weakSelf];
- }
- }];
- }
- }
- -(BOOL)currentIsLandscape{
- return UIDeviceOrientationIsLandscape(UIDevice.currentDevice.orientation);
- }
- -(CGRect)showFrame{
- return [self currentIsLandscape] ? _maker.landscapeFrame : _maker.portraitFrame;
- }
- -(CGRect)hideFrame{
- CGRect hideFrame = [self showFrame];
- switch ([self currentAppearMode]) {
- case EBCustomViewAppearModeTop:
- hideFrame.origin.y = -hideFrame.size.height;
- break;
- case EBCustomViewAppearModeLeft:
- hideFrame.origin.x = -hideFrame.size.width;
- break;
- case EBCustomViewAppearModeRight:
- hideFrame.origin.x = ScreenWidth + hideFrame.size.width;
- break;
- case EBCustomViewAppearModeBottom:
- hideFrame.origin.y = ScreenHeight;
- break;
- case EBCustomViewAppearModeCenter:
- break;
- default:
- break;
- }
- return hideFrame;
- }
- -(EBCustomBannerViewAppearMode)currentAppearMode{
- return [self currentIsLandscape] ? _maker.landscapeMode : _maker.portraitMode;
- }
- -(void)dealloc{
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- @end
|