Skip to content

Instantly share code, notes, and snippets.

View joshbax's full-sized avatar

Josh B. joshbax

  • Microsoft
  • Seattle, wa
View GitHub Profile
@joshbax
joshbax / CircleProgressView.m
Created March 16, 2016 06:30
Circular Progress View, like the record button on snapchat. A few years old written in objective-c.
#import "CircleProgressView.h"
#import <QuartzCore/QuartzCore.h>
@interface CircleProgressView()
@property (strong,nonatomic) CADisplayLink *displayLink;
@property (assign) NSTimeInterval drawDuration;
@property (assign) CFTimeInterval lastDrawTime;
@property (assign) CGFloat totalDrawTime,drawProgress,radius,lineWidth;
@property (assign) BOOL animationRunning;