EBBannerView.m 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. //
  2. // EBBannerView.m
  3. // iOS-Foreground-Push-Notification
  4. //
  5. // Created by pikacode@qq.com on 0/7/21.
  6. // Copyright © 200年 57300022@qq.com. All rights reserved.
  7. //
  8. #import "EBBannerView.h"
  9. #import "EBMuteDetector.h"
  10. #import <AudioToolbox/AudioToolbox.h>
  11. #import "EBCustomBannerView.h"
  12. #import "EBBannerView+Categories.h"
  13. #import "EBBannerWindow.h"
  14. #define kAnimationDamping 0.8
  15. NSString *const EBBannerViewDidClickNotification = @"EBBannerViewDidClickNotification";
  16. @interface EBBannerView() {
  17. NSTimer *_hideTimer;
  18. }
  19. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  20. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  21. @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
  22. @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
  23. @property (weak, nonatomic) IBOutlet UIView *lineView;
  24. @property (nonatomic, assign)BOOL isExpand;
  25. @property(nonatomic, assign, readonly)CGFloat standardHeight;
  26. @property (nonatomic, assign, readonly)CGFloat calculatedContentHeight;
  27. @property (nonatomic, assign, readonly)CGFloat fixedX;
  28. @property (nonatomic, assign, readonly)CGFloat fixedY;
  29. @property (nonatomic, assign, readonly)CGFloat fixedWidth;
  30. @property(nonatomic, strong)EBBannerViewMaker *maker;
  31. @end
  32. @implementation EBBannerView
  33. static NSMutableArray <EBBannerView*>*sharedBannerViews;
  34. static EBBannerWindow *sharedWindow;
  35. #pragma mark - public
  36. +(instancetype)bannerWithBlock:(void(^)(EBBannerViewMaker *make))block{
  37. sharedWindow = [EBBannerWindow sharedWindow];
  38. EBBannerViewMaker *maker = [EBBannerViewMaker defaultMaker];
  39. block(maker);
  40. maker.style = MAX(maker.style, 9);
  41. EBBannerView *bannerView = [EBBannerView bannerViewWithStyle:maker.style];
  42. bannerView.maker = maker;
  43. if (maker.style == EBBannerViewStyleiOS9) {
  44. bannerView.dateLabel.textColor = [[UIImage colorAtPoint:bannerView.dateLabel.center] colorWithAlphaComponent:0.7];
  45. CGPoint lineCenter = bannerView.lineView.center;
  46. bannerView.lineView.backgroundColor = [[UIImage colorAtPoint:CGPointMake(lineCenter.x, lineCenter.y - 7)] colorWithAlphaComponent:0.5];
  47. }
  48. return bannerView;
  49. }
  50. +(instancetype)current{
  51. EBBannerView *view = sharedWindow.rootViewController.view.subviews.lastObject;
  52. if ([view isKindOfClass:[EBBannerView class]] && view.superview) {
  53. return view;
  54. } else {
  55. return nil;
  56. }
  57. }
  58. -(void)show{
  59. if (_hideTimer) {
  60. [_hideTimer invalidate];
  61. _hideTimer = nil;
  62. }
  63. SystemSoundID soundID = _maker.soundID;
  64. if (_maker.soundName) {
  65. NSURL *url = [[NSBundle mainBundle] URLForResource:_maker.soundName withExtension:nil];
  66. AudioServicesCreateSystemSoundID((__bridge CFURLRef)(url), &soundID);
  67. }
  68. WEAK_SELF(weakSelf);
  69. [[EBMuteDetector sharedDetecotr] detectComplete:^(BOOL isMute) {
  70. if (isMute && weakSelf.maker.vibrateOnMute) {
  71. AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
  72. } else {
  73. AudioServicesPlaySystemSound(soundID);
  74. }
  75. }];
  76. self.imageView.image = _maker.icon;
  77. self.titleLabel.text = _maker.title;
  78. self.dateLabel.text = _maker.date;
  79. self.contentLabel.text = _maker.content;
  80. self.lineView.hidden = self.calculatedContentHeight < 34;
  81. //iOS8 使用新样式label显示bug
  82. if (UIDevice.currentDevice.systemVersion.intValue < 9 && _maker.style > 9) {
  83. self.contentLabel.numberOfLines = 1;
  84. }
  85. [sharedWindow.rootViewController.view addSubview:self];
  86. self.frame = CGRectMake(self.fixedX, -self.standardHeight, self.fixedWidth, self.standardHeight);
  87. CGFloat damping = _maker.style == 9 ? 1 : kAnimationDamping;
  88. sharedWindow.hidden = NO;
  89. [UIView animateWithDuration:_maker.showAnimationDuration delay:0 usingSpringWithDamping:damping initialSpringVelocity:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
  90. weakSelf.frame = CGRectMake(weakSelf.fixedX, weakSelf.fixedY, weakSelf.fixedWidth, weakSelf.standardHeight);
  91. } completion:^(BOOL finished) {
  92. EBBannerView *strongSelf = weakSelf;
  93. strongSelf->_hideTimer = [NSTimer scheduledTimerWithTimeInterval:weakSelf.maker.stayDuration target:weakSelf selector:@selector(hide) userInfo:nil repeats:NO];
  94. }];
  95. }
  96. +(void)showWithContent:(NSString*)content{
  97. [[EBBannerView bannerWithBlock:^(EBBannerViewMaker *make) {
  98. make.content = content;
  99. }] show];
  100. }
  101. #pragma mark - private
  102. +(instancetype)bannerViewWithStyle:(EBBannerViewStyle)style{
  103. EBBannerView *bannerView;
  104. for (EBBannerView *view in sharedBannerViews) {
  105. if (view.maker.style == style) {
  106. bannerView = view;
  107. break;
  108. }
  109. }
  110. if (bannerView == nil) {
  111. NSArray *views = [[NSBundle bundleForClass:self.class] loadNibNamed:@"EBBannerView" owner:nil options:nil];
  112. NSUInteger index = MIN(style - 9, views.count - 1);
  113. bannerView = views[index];
  114. [[NSNotificationCenter defaultCenter] addObserver:bannerView selector:@selector(applicationDidChangeStatusBarOrientationNotification) name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
  115. [bannerView addGestureRecognizer];
  116. bannerView.layer.shadowColor = UIColor.blackColor.CGColor;
  117. bannerView.layer.shadowRadius = 3.5;
  118. bannerView.layer.shadowOpacity = 0.35;
  119. bannerView.layer.shadowOffset = CGSizeZero;
  120. [sharedBannerViews addObject:bannerView];
  121. }
  122. return bannerView;
  123. }
  124. -(void)hide{
  125. WEAK_SELF(weakSelf);
  126. [UIView animateWithDuration:_maker.hideAnimationDuration delay:0 usingSpringWithDamping:kAnimationDamping initialSpringVelocity:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
  127. weakSelf.frame = CGRectMake(weakSelf.fixedX, -weakSelf.standardHeight - (weakSelf.frame.size.height - weakSelf.standardHeight), weakSelf.fixedWidth, weakSelf.frame.size.height);
  128. } completion:^(BOOL finished) {
  129. if (weakSelf.superview.subviews.count == 1) {
  130. sharedWindow.hidden = YES;
  131. }
  132. [weakSelf removeFromSuperview];
  133. }];
  134. }
  135. -(void)applicationDidChangeStatusBarOrientationNotification{
  136. if (!self.superview) {
  137. return;
  138. }
  139. self.frame = CGRectMake(self.fixedX, self.fixedY, self.fixedWidth, self.standardHeight);
  140. }
  141. -(void)addGestureRecognizer{
  142. UISwipeGestureRecognizer *swipeUpGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeUpGesture:)];
  143. swipeUpGesture.direction = UISwipeGestureRecognizerDirectionUp;
  144. [self addGestureRecognizer:swipeUpGesture];
  145. UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];
  146. [self addGestureRecognizer:tapGesture];
  147. UISwipeGestureRecognizer *swipeDownGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeDownGesture:)];
  148. swipeDownGesture.direction = UISwipeGestureRecognizerDirectionDown;
  149. [self addGestureRecognizer:swipeDownGesture];
  150. }
  151. -(void)tapGesture:(UITapGestureRecognizer*)tapGesture{
  152. if (_maker.showDetailOrHideWhenClickLongText && !self.lineView.hidden) {
  153. UISwipeGestureRecognizer *g = [UISwipeGestureRecognizer new];
  154. g.direction = UISwipeGestureRecognizerDirectionDown;
  155. [self swipeDownGesture:g];
  156. } else {
  157. [[NSNotificationCenter defaultCenter] postNotificationName:EBBannerViewDidClickNotification object:_maker.object];
  158. [self hide];
  159. }
  160. }
  161. -(void)swipeUpGesture:(UISwipeGestureRecognizer*)gesture{
  162. if (gesture.direction == UISwipeGestureRecognizerDirectionUp) {
  163. [self hide];
  164. }
  165. }
  166. -(void)swipeDownGesture:(UISwipeGestureRecognizer*)gesture{
  167. if (gesture.direction == UISwipeGestureRecognizerDirectionDown && !self.lineView.hidden) {
  168. if (UIDevice.currentDevice.systemVersion.intValue < 9 && _maker.style > 9) {
  169. self.contentLabel.numberOfLines = 0;
  170. }
  171. self.isExpand = YES;
  172. self.lineView.hidden = YES;
  173. [_hideTimer invalidate];
  174. _hideTimer = nil;
  175. _hideTimer = [NSTimer scheduledTimerWithTimeInterval:_maker.swipeDownStayDuration target:self selector:@selector(hide) userInfo:nil repeats:NO];
  176. WEAK_SELF(weakSelf);
  177. CGFloat originContentHeight = self.contentLabel.frame.size.height;
  178. [UIView animateWithDuration:_maker.hideAnimationDuration delay:0 usingSpringWithDamping:kAnimationDamping initialSpringVelocity:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
  179. weakSelf.frame = CGRectMake(weakSelf.fixedX, weakSelf.fixedY, weakSelf.fixedWidth, weakSelf.standardHeight + weakSelf.calculatedContentHeight - originContentHeight + 1);
  180. } completion:^(BOOL finished) {
  181. weakSelf.frame = CGRectMake(weakSelf.fixedX, weakSelf.fixedY, weakSelf.fixedWidth, weakSelf.standardHeight + weakSelf.calculatedContentHeight - originContentHeight + 1);
  182. }];
  183. }
  184. }
  185. #pragma mark - @property
  186. -(CGFloat)standardHeight{
  187. switch (_maker.style) {
  188. case EBBannerViewStyleiOS8:
  189. case EBBannerViewStyleiOS9:
  190. return 70;
  191. case EBBannerViewStyleiOS10:
  192. case EBBannerViewStyleiOS11:
  193. case EBBannerViewStyleiOS12:
  194. return 90;
  195. }
  196. }
  197. -(CGFloat)calculatedContentHeight{
  198. CGSize size = CGSizeMake(self.contentLabel.frame.size.width, MAXFLOAT);
  199. NSDictionary *dict = [NSDictionary dictionaryWithObject:[UIFont systemFontOfSize:self.contentLabel.font.pointSize] forKey:NSFontAttributeName];
  200. CGFloat calculatedHeight = [self.contentLabel.text boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin attributes:dict context:nil].size.height;
  201. return calculatedHeight;
  202. }
  203. -(BOOL)isiPhoneX{
  204. if (@available(iOS 11.0, *)) {
  205. return UIApplication.sharedApplication.keyWindow.safeAreaInsets.bottom > 0;
  206. // return UIApplication.sharedApplication.delegate.window.safeAreaInsets.bottom > 0;
  207. } else {
  208. return NO;
  209. }
  210. }
  211. -(CGFloat)fixedX{
  212. return ([self isiPhoneX] && ![self isPortrait]) ? 128 : 0;
  213. }
  214. -(CGFloat)fixedY{
  215. return ([self isiPhoneX] && [self isPortrait]) ? 33 : 0;
  216. }
  217. -(CGFloat)fixedWidth{
  218. return ([self isiPhoneX] && ![self isPortrait]) ? 556 : ScreenWidth;
  219. }
  220. -(BOOL)isPortrait{
  221. return ScreenWidth < ScreenHeight;
  222. }
  223. @end