EBBannerViewMaker.m 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // EBBannerViewMaker.m
  3. // EBBannerView
  4. //
  5. // Created by wxc on 2017/11/27.
  6. //
  7. #import "EBBannerView.h"
  8. @implementation EBBannerViewMaker
  9. +(instancetype)defaultMaker{
  10. EBBannerViewMaker *maker = [EBBannerViewMaker new];
  11. maker.style = MAX(UIDevice.currentDevice.systemVersion.intValue, 9);
  12. maker.icon = [UIImage imageNamed:@"AppIcon40x40"] ?: [UIImage imageNamed:@"AppIcon60x60"] ?: [UIImage imageNamed:@"AppIcon80x80"] ?: [UIImage imageNamed:@"AppIcon"];
  13. NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
  14. maker.title = [infoDictionary objectForKey:@"CFBundleDisplayName"] ?: [infoDictionary objectForKey:@"CFBundleName"];
  15. maker.date = NSLocalizedString(@"现在", nil);
  16. maker.content = @"";
  17. maker.showAnimationDuration = 0.3;
  18. maker.hideAnimationDuration = 0.5;
  19. maker.stayDuration = 4;
  20. maker.swipeDownStayDuration = 4;
  21. maker.soundID = 1312;
  22. maker.vibrateOnMute = YES;
  23. maker.showDetailOrHideWhenClickLongText = YES;
  24. return maker;
  25. }
  26. -(void)setStyle:(EBBannerViewStyle)style{
  27. if (style < 9) {
  28. _style = EBBannerViewStyleiOS9;
  29. } else if (style > 12) {
  30. _style = EBBannerViewStyleiOS12;
  31. } else {
  32. _style = style;
  33. }
  34. }
  35. -(id)object{
  36. if (!_object) {
  37. _object = self.content.copy;
  38. }
  39. return _object;
  40. }
  41. @end