Skip to content

pablogsIO/RecordButton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RecordButtonView

License Platform

A simple iOS record button writing in Swift

Requirements

  • Swift 4. Should work with Swift 3

Example Project

You have a fully functional demo in Example folder

Usage

Interface Builder

  • Drag RecordButton class into your project
  • In your storyboard, select a UIView
  • Go the the identity inspector and in the class field, type RecordButton instead of UIView

  • In your ViewController add the following
    @IBOutlet weak var recordButton: RecordButton!
    override func viewDidAppear(_ animated: Bool) {

        super.viewDidAppear(animated)

        recordButton.delegate = self
    }

Manually

  • Drag RecordButton class into your project
  • In your ViewController add the following
    var recordButton: RecordButton?
    override func viewDidAppear(_ animated: Bool) {

        super.viewDidAppear(animated)

        let recordButtonSide = self.view.bounds.size.height/10
        recordButton = RecordButton(frame: CGRect(x: self.view.bounds.width/2-recordButtonSide/2,
                                                  y: self.view.bounds.height/2-recordButtonSide/2,
                                                  width: recordButtonSide,
                                                  height: recordButtonSide))
        recordButton?.delegate = self

        self.view.addSubview(recordButton!)

    }

Delegate

The ViewController should conform RecordButtonDelegate protocol to control when the button is pressed

extension ViewController: RecordButtonDelegate {

    func tapButton(isRecording: Bool) {

        if isRecording {
            print("Start recording")
        } else {
            print("Stop recording")
        }
    }
}

Support/Issues

If you have any questions, please don't hesitate to create an issue.

To-Do

  • Add Cocoapods

License

RecordButton is available under the MIT license. See the LICENSE file for more info.

If you use it, I'll be happy to know about it.

About

A simple iOS record button

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages