mirror of
https://github.com/samsonjs/SwiftyCam.git
synced 2026-03-25 09:05:52 +00:00
130 lines
4.3 KiB
Swift
130 lines
4.3 KiB
Swift
/*Copyright (c) 2016, Andrew Walz.
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
|
|
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
|
|
|
|
|
|
import UIKit
|
|
|
|
//MARK: Public Protocol Declaration
|
|
|
|
/// Delegate for SwiftyCamButton
|
|
|
|
public protocol SwiftyCamButtonDelegate: class {
|
|
|
|
/// Called when UITapGestureRecognizer begins
|
|
|
|
func buttonWasTapped()
|
|
|
|
/// Called When UILongPressGestureRecognizer enters UIGestureRecognizerState.began
|
|
|
|
func buttonDidBeginLongPress()
|
|
|
|
/// Called When UILongPressGestureRecognizer enters UIGestureRecognizerState.end
|
|
|
|
func buttonDidEndLongPress()
|
|
|
|
/// Called when the maximum duration is reached
|
|
|
|
func longPressDidReachMaximumDuration()
|
|
|
|
/// Sets the maximum duration of the video recording
|
|
|
|
func setMaxiumVideoDuration() -> Double
|
|
}
|
|
|
|
// MARK: Public View Declaration
|
|
|
|
|
|
/// UIButton Subclass for Capturing Photo and Video with SwiftyCamViewController
|
|
|
|
open class SwiftyCamButton: UIButton {
|
|
|
|
/// Delegate variable
|
|
|
|
public weak var delegate: SwiftyCamButtonDelegate?
|
|
|
|
/// Maximum duration variable
|
|
|
|
fileprivate var timer : Timer?
|
|
|
|
/// Initialization Declaration
|
|
|
|
override public init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
createGestureRecognizers()
|
|
}
|
|
|
|
/// Initialization Declaration
|
|
|
|
|
|
required public init?(coder aDecoder: NSCoder) {
|
|
super.init(coder: aDecoder)
|
|
createGestureRecognizers()
|
|
}
|
|
|
|
/// UITapGestureRecognizer Function
|
|
|
|
@objc fileprivate func Tap() {
|
|
delegate?.buttonWasTapped()
|
|
}
|
|
|
|
/// UILongPressGestureRecognizer Function
|
|
|
|
@objc fileprivate func LongPress(_ sender:UILongPressGestureRecognizer!) {
|
|
switch sender.state {
|
|
case .began:
|
|
delegate?.buttonDidBeginLongPress()
|
|
startTimer()
|
|
case .ended:
|
|
invalidateTimer()
|
|
delegate?.buttonDidEndLongPress()
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
/// Timer Finished
|
|
|
|
@objc fileprivate func timerFinished() {
|
|
invalidateTimer()
|
|
delegate?.longPressDidReachMaximumDuration()
|
|
}
|
|
|
|
/// Start Maximum Duration Timer
|
|
|
|
fileprivate func startTimer() {
|
|
if let duration = delegate?.setMaxiumVideoDuration() {
|
|
//Check if duration is set, and greater than zero
|
|
if duration != 0.0 && duration > 0.0 {
|
|
timer = Timer.scheduledTimer(timeInterval: duration, target: self, selector: #selector(SwiftyCamButton.timerFinished), userInfo: nil, repeats: false)
|
|
}
|
|
}
|
|
}
|
|
|
|
// End timer if UILongPressGestureRecognizer is ended before time has ended
|
|
|
|
fileprivate func invalidateTimer() {
|
|
timer?.invalidate()
|
|
timer = nil
|
|
}
|
|
|
|
// Add Tap and LongPress gesture recognizers
|
|
|
|
fileprivate func createGestureRecognizers() {
|
|
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(SwiftyCamButton.Tap))
|
|
let longGesture = UILongPressGestureRecognizer(target: self, action: #selector(SwiftyCamButton.LongPress))
|
|
self.addGestureRecognizer(tapGesture)
|
|
self.addGestureRecognizer(longGesture)
|
|
}
|
|
}
|