EBBannerView+Categories.m 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. //
  2. // EBBannerView+Categories.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 "EBBannerView+Categories.h"
  9. #import "EBBannerView.h"
  10. @implementation EBBannerView (EBCategory)
  11. +(UIImage*)defaultIcon{
  12. return [UIImage imageNamed:@"AppIcon40x40"] ?: [UIImage imageNamed:@"AppIcon60x60"] ?: [UIImage imageNamed:@"AppIcon80x80"];
  13. }
  14. +(NSString*)defaultTitle{
  15. NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
  16. return [infoDictionary objectForKey:@"CFBundleDisplayName"] ?: [infoDictionary objectForKey:@"CFBundleName"];
  17. }
  18. +(NSString*)defaultDate{
  19. return NSLocalizedString(@"现在", nil);
  20. }
  21. +(NSTimeInterval)defaultAnimationTime{
  22. return 0.3;
  23. }
  24. +(NSTimeInterval)defaultStayTime{
  25. return 4;
  26. }
  27. +(UInt32)defaultSoundID{
  28. return 1312;
  29. }
  30. -(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
  31. if (CGRectContainsPoint(self.frame, point)) {
  32. return self;
  33. } else {
  34. return [super hitTest:point withEvent:event];
  35. }
  36. }
  37. @end
  38. @implementation NSTimer (EBCategory)
  39. + (void)_eb_ExecBlock:(NSTimer *)timer {
  40. if ([timer userInfo]) {
  41. void (^block)(NSTimer *timer) = (void (^)(NSTimer *timer))[timer userInfo];
  42. block(timer);
  43. }
  44. }
  45. + (NSTimer *)eb_scheduledTimerWithTimeInterval:(NSTimeInterval)interval block:(void (^)(NSTimer *timer))block repeats:(BOOL)repeats {
  46. return [NSTimer scheduledTimerWithTimeInterval:interval target:self selector:@selector(_eb_ExecBlock:) userInfo:[block copy] repeats:repeats];
  47. }
  48. @end
  49. @implementation UIImage (EBBannerViewCategory)
  50. +(UIColor *)colorAtPoint:(CGPoint)point{
  51. UIWindow *screenWindow = [[UIApplication sharedApplication] keyWindow];
  52. UIGraphicsBeginImageContext(screenWindow.frame.size);//全屏截图,包括window
  53. [screenWindow.layer renderInContext:UIGraphicsGetCurrentContext()];
  54. UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
  55. if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, viewImage.size.width, viewImage.size.height), point)) {
  56. return nil;
  57. }
  58. NSInteger pointX = trunc(point.x);
  59. NSInteger pointY = trunc(point.y);
  60. CGImageRef cgImage = viewImage.CGImage;
  61. NSUInteger width = viewImage.size.width;
  62. NSUInteger height = viewImage.size.height;
  63. viewImage = nil;
  64. CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
  65. int bytesPerPixel = 4;
  66. int bytesPerRow = bytesPerPixel * 1;
  67. NSUInteger bitsPerComponent = 8;
  68. unsigned char pixelData[4] = { 0, 0, 0, 0 };
  69. CGContextRef context = CGBitmapContextCreate(pixelData, 1, 1, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
  70. CGColorSpaceRelease(colorSpace);
  71. CGContextSetBlendMode(context, kCGBlendModeCopy);
  72. CGContextTranslateCTM(context, -pointX, pointY-(CGFloat)height);
  73. CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, (CGFloat)width, (CGFloat)height), cgImage);
  74. UIGraphicsEndImageContext();
  75. CGContextRelease(context);
  76. CGFloat red = (CGFloat)pixelData[0] / 255.0f;
  77. CGFloat green = (CGFloat)pixelData[1] / 255.0f;
  78. CGFloat blue = (CGFloat)pixelData[2] / 255.0f;
  79. CGFloat alpha = (CGFloat)pixelData[3] / 255.0f;
  80. return [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
  81. }
  82. @end