Skip to content
This repository has been archived by the owner on Nov 10, 2021. It is now read-only.

immago/DBCameraButton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBCameraButton

podver podver podver

Customizable, IB_DESIGNABLE, iOS style camera button.

image

Installation

CocoaPods

pod 'DBCameraButton'

If you have IB Designables render error add use_frameworks! to your pod file. image

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.