DBGuestureButton.m 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // DBGuestureButton.m
  3. // DBGuestureLock
  4. //
  5. // Created by DeBao.Wu on 2/27/16.
  6. // Email: i36.lib@gmail.com QQ: 754753371
  7. // Copyright © 2016 http://i36.Me/. All rights reserved.
  8. // Github地址: https://github.com/i36lib/DBGuestureLock/
  9. #import "DBGuestureLock.h"
  10. #import "DBGuestureButton.h"
  11. @implementation DBGuestureButton
  12. //Override
  13. -(instancetype)init {
  14. self = [super init];
  15. if (self) {
  16. [self setUserInteractionEnabled:NO];
  17. }
  18. return self;
  19. }
  20. //Override
  21. -(instancetype)initWithCoder:(NSCoder *)aDecoder {
  22. self = [super initWithCoder:aDecoder];
  23. if (self) {
  24. [self setUserInteractionEnabled:NO];
  25. }
  26. return self;
  27. }
  28. //Override
  29. -(instancetype)initWithFrame:(CGRect)frame {
  30. self = [super initWithFrame:frame];
  31. if (self) {
  32. [self setUserInteractionEnabled:NO];
  33. }
  34. return self;
  35. }
  36. //Override, Draw the button
  37. -(void)drawRect:(CGRect)rect {
  38. [super drawRect:rect];
  39. __weak DBGuestureLock *glv = nil;
  40. if ([self.superview isKindOfClass:[DBGuestureLock class]]) {
  41. glv = (DBGuestureLock *)self.superview;
  42. }
  43. CGFloat width = rect.size.height > rect.size.width ? rect.size.width : rect.size.height;
  44. CGFloat radius = (width - 2*glv.strokeWidth)/2;
  45. //if glv.circleRadius (from user) grater than radius,
  46. //it may cause the circle be draw out of the button.
  47. if (radius > (glv.circleRadius - glv.strokeWidth)) {
  48. radius = glv.circleRadius - glv.strokeWidth;
  49. }
  50. CGContextRef context = UIGraphicsGetCurrentContext();
  51. CGContextSetLineWidth(context, glv.strokeWidth);
  52. CGPoint centerPoint = CGPointMake(rect.size.width/2, rect.size.height/2);
  53. //CGPoint centerPoint = CGPointMake(radius+glv.strokeWidth, radius+glv.strokeWidth);
  54. CGFloat startAngle = -((CGFloat)M_PI / 2); // 90 degrees
  55. CGFloat endAngle = ((2 * (CGFloat)M_PI) + startAngle);
  56. [glv.strokeColor setStroke];
  57. CGContextAddArc(context, centerPoint.x, centerPoint.y, radius+glv.strokeWidth/2, startAngle, endAngle, 0); //0:counterclockwise, 1:clockwise
  58. CGContextStrokePath(context);
  59. if (glv.showCenterPoint) {
  60. [glv.fillColor set];
  61. CGContextAddArc(context, centerPoint.x, centerPoint.y, radius, startAngle, endAngle, 0); //0:counterclockwise, 1:clockwise
  62. CGContextFillPath(context);
  63. if (glv.fillCenterPoint) {
  64. [glv.centerPointColor set];
  65. } else {
  66. [glv.centerPointColor setStroke];
  67. }
  68. CGContextAddArc(context, centerPoint.x, centerPoint.y, glv.centerPointRadius, startAngle, endAngle, 0); //0:counterclockwise, 1:clockwise
  69. if (glv.fillCenterPoint) {
  70. CGContextFillPath(context);
  71. } else {
  72. CGContextStrokePath(context);
  73. }
  74. }
  75. }
  76. @end