EBCustomBannerView.m 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. //
  2. // EBCustomBannerView.m
  3. // demo
  4. //
  5. // Created by pikacode@qq.com on 2017/10/20.
  6. // Copyright © 2017年 pikacode@qq.com. All rights reserved.
  7. //
  8. #import "EBCustomBannerView.h"
  9. #import "EBBannerView.h"
  10. #import <AudioToolbox/AudioToolbox.h>
  11. #import "EBMuteDetector.h"
  12. #import "EBBannerWindow.h"
  13. #import "EBBannerView+Categories.h"
  14. @interface EBCustomBannerViewMaker()
  15. @property(nonatomic, strong)UIView *view;
  16. @end
  17. @implementation EBCustomBannerViewMaker
  18. +(instancetype)makerWithView:(UIView*)view{
  19. EBCustomBannerViewMaker *maker = [EBCustomBannerViewMaker new];
  20. maker.portraitMode = EBCustomViewAppearModeTop;
  21. maker.landscapeMode = EBCustomViewAppearModeTop;
  22. maker.animationDuration = 0.3;
  23. maker.stayDuration = 4.0;
  24. maker.soundID = 0;
  25. maker.view = view;
  26. maker.landscapeFrame = view.frame;
  27. maker.portraitFrame = view.frame;
  28. maker.centerModeDurations = @[@0.3, @0.2, @0.1];
  29. maker.vibrateOnMute = YES;
  30. return maker;
  31. }
  32. @end
  33. @interface EBCustomBannerView()
  34. @property(nonatomic, strong)EBCustomBannerViewMaker *maker;
  35. @end
  36. @implementation EBCustomBannerView
  37. static NSMutableArray <EBCustomBannerView*>*sharedCustomViews;
  38. static EBBannerWindow *sharedWindow;
  39. +(void)sharedCustomBannerViewInit{
  40. static dispatch_once_t onceToken;
  41. dispatch_once(&onceToken, ^{
  42. sharedWindow = [EBBannerWindow sharedWindow];
  43. sharedCustomViews = [NSMutableArray<EBCustomBannerView*> array];
  44. });
  45. }
  46. +(EBCustomBannerView*)showCustomView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block{
  47. EBCustomBannerView *bannerView = [EBCustomBannerView customView:view block:block];
  48. [bannerView show];
  49. return bannerView;
  50. }
  51. //make a custom view and show later
  52. +(EBCustomBannerView*)customView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block{
  53. EBCustomBannerView *bannerView = [EBCustomBannerView new];
  54. EBCustomBannerViewMaker *maker = [EBCustomBannerViewMaker makerWithView:view];
  55. bannerView.maker = maker;
  56. block(maker);
  57. [[NSNotificationCenter defaultCenter] addObserver:bannerView selector:@selector(applicationDidChangeStatusBarOrientationNotification) name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
  58. return bannerView;
  59. }
  60. -(void)applicationDidChangeStatusBarOrientationNotification{
  61. if (sharedCustomViews.count == 0) {
  62. return;
  63. }
  64. if ([self currentIsLandscape]) {
  65. [sharedCustomViews enumerateObjectsUsingBlock:^(EBCustomBannerView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  66. obj.maker.view.frame = obj.maker.landscapeFrame;
  67. }];
  68. } else {
  69. [sharedCustomViews enumerateObjectsUsingBlock:^(EBCustomBannerView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  70. obj.maker.view.frame = obj.maker.portraitFrame;
  71. }];
  72. }
  73. }
  74. -(void)show{
  75. [EBCustomBannerView sharedCustomBannerViewInit];
  76. [sharedCustomViews addObject:self];
  77. if (_maker.soundName || _maker.soundID != 0) {
  78. SystemSoundID soundID;
  79. if (_maker.soundName) {
  80. NSURL *url = [[NSBundle mainBundle] URLForResource:_maker.soundName withExtension:nil];
  81. AudioServicesCreateSystemSoundID((__bridge CFURLRef)(url), &soundID);
  82. } else {
  83. soundID = _maker.soundID;
  84. }
  85. WEAK_SELF(weakSelf);
  86. [[EBMuteDetector sharedDetecotr] detectComplete:^(BOOL isMute) {
  87. if (isMute && weakSelf.maker.vibrateOnMute) {
  88. AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
  89. } else {
  90. AudioServicesPlaySystemSound(soundID);
  91. }
  92. }];
  93. }
  94. [sharedWindow.rootViewController.view addSubview:_maker.view];
  95. if ([self currentAppearMode] == EBCustomViewAppearModeCenter) {
  96. dispatch_async(dispatch_get_main_queue(), ^{
  97. WEAK_SELF(weakSelf);
  98. UIView *view = weakSelf.maker.view;
  99. view.frame = [weakSelf showFrame];
  100. view.alpha = 0;
  101. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[0].doubleValue animations:^{
  102. view.alpha = 1;
  103. }];
  104. view.alpha = 0;
  105. view.layer.shouldRasterize = YES;
  106. view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.4, 0.4);
  107. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[1].doubleValue animations:^{
  108. view.alpha = 1;
  109. view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
  110. } completion:^(BOOL finished) {
  111. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[2].doubleValue delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
  112. view.alpha = 1;
  113. view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1, 1);
  114. } completion:^(BOOL finished2) {
  115. view.layer.shouldRasterize = NO;
  116. if (weakSelf.maker.stayDuration > 0) {
  117. [NSTimer eb_scheduledTimerWithTimeInterval:weakSelf.maker.stayDuration block:^(NSTimer *timer) {
  118. [weakSelf hide];
  119. } repeats:NO];
  120. }
  121. }];
  122. }];
  123. });
  124. } else {
  125. _maker.view.frame = [self hideFrame];
  126. WEAK_SELF(weakSelf);
  127. [UIView animateWithDuration:_maker.animationDuration animations:^{
  128. weakSelf.maker.view.frame = [weakSelf showFrame];
  129. } completion:^(BOOL finished) {
  130. if (weakSelf.maker.stayDuration > 0) {
  131. [NSTimer eb_scheduledTimerWithTimeInterval:weakSelf.maker.stayDuration block:^(NSTimer *timer) {
  132. [weakSelf hide];
  133. } repeats:NO];
  134. }
  135. }];
  136. }
  137. }
  138. -(void)hide{
  139. if (!self.maker.view.superview) {
  140. return;
  141. }
  142. if ([self currentAppearMode] == EBCustomViewAppearModeCenter) {
  143. dispatch_async(dispatch_get_main_queue(), ^{
  144. WEAK_SELF(weakSelf);
  145. UIView *view = weakSelf.maker.view;
  146. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[0].doubleValue animations:^{
  147. view.alpha = 0;
  148. }];
  149. view.layer.shouldRasterize = YES;
  150. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[2].doubleValue animations:^{
  151. view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
  152. } completion:^(BOOL finished){
  153. [UIView animateWithDuration:weakSelf.maker.centerModeDurations[1].doubleValue delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
  154. view.alpha = 0;
  155. view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.4, 0.4);
  156. } completion:^(BOOL finished){
  157. [view removeFromSuperview];
  158. [sharedCustomViews removeObject:weakSelf];
  159. }];
  160. }];
  161. });
  162. } else {
  163. WEAK_SELF(weakSelf);
  164. [UIView animateWithDuration:_maker.animationDuration animations:^{
  165. weakSelf.maker.view.frame = [weakSelf hideFrame];
  166. } completion:^(BOOL finished) {
  167. if (weakSelf.maker.view.superview) {
  168. [weakSelf.maker.view removeFromSuperview];
  169. }
  170. if ([sharedCustomViews containsObject:weakSelf]) {
  171. [sharedCustomViews removeObject:weakSelf];
  172. }
  173. }];
  174. }
  175. }
  176. -(BOOL)currentIsLandscape{
  177. return UIDeviceOrientationIsLandscape(UIDevice.currentDevice.orientation);
  178. }
  179. -(CGRect)showFrame{
  180. return [self currentIsLandscape] ? _maker.landscapeFrame : _maker.portraitFrame;
  181. }
  182. -(CGRect)hideFrame{
  183. CGRect hideFrame = [self showFrame];
  184. switch ([self currentAppearMode]) {
  185. case EBCustomViewAppearModeTop:
  186. hideFrame.origin.y = -hideFrame.size.height;
  187. break;
  188. case EBCustomViewAppearModeLeft:
  189. hideFrame.origin.x = -hideFrame.size.width;
  190. break;
  191. case EBCustomViewAppearModeRight:
  192. hideFrame.origin.x = ScreenWidth + hideFrame.size.width;
  193. break;
  194. case EBCustomViewAppearModeBottom:
  195. hideFrame.origin.y = ScreenHeight;
  196. break;
  197. case EBCustomViewAppearModeCenter:
  198. break;
  199. default:
  200. break;
  201. }
  202. return hideFrame;
  203. }
  204. -(EBCustomBannerViewAppearMode)currentAppearMode{
  205. return [self currentIsLandscape] ? _maker.landscapeMode : _maker.portraitMode;
  206. }
  207. -(void)dealloc{
  208. [[NSNotificationCenter defaultCenter] removeObserver:self];
  209. }
  210. @end