DBCameraButton
DBCameraButton copied to clipboard
Customizable, IB_DESIGNABLE, iOS style camera button.
DBCameraButton
Customizable, IB_DESIGNABLE, iOS style camera button.

Installation
CocoaPods
pod 'DBCameraButton'
If you have IB Designables render error add use_frameworks! to your pod file.

Manual
Copy DBCameraButton.h and DBCameraButton.m from Classes directory to your project.
Usage
Create DBCameraButton button (subclass of UIButton) without title in storyboard or programmatically. No additional configuration needed.
Properties
CGFloat animationDuration - duration of animation
BOOL isRecording - if YES display "stop" square, else display "capture" circle
UIColor *circleColor - color of "capture" circle
UIColor *squareColor - color of "stop" square
UIColor *outerRingColor - color of outer ring
UIColor *disabledColor - color in disabled state
CGFloat outerRingWidth - width of outer ring
CGFloat outerRingSpacing - space between outer ring and inner shape
CGFloat squareCornerRadius - corner radius of "stop" square
BOOL autoStateChange - change state when button pressed. Default YES. Set NO to manual state change.
CGFloat margin - margin to rect bounds.


