SwiftSiriWaveformView

UIView subclass that reproduces the waveform effect seen in Siri on iOS 7 / iOS 8


License
MIT
Install
pod try SwiftSiriWaveformView

Documentation

SwiftSiriWaveformView (Swift 4.0 / Xcode 9 compatible)

Version License Platform

Description

SwiftSiriWaveformView is a UIView subclass that reproduces the waveform effect seen in Siri on iOS 7 and iOS 8.

It is a Swift adaptation of the amazing SCSiriWaveformView by Stefan Ceriu.

Sample

Version 2.4 | Swift 4.0 / XCode 9

  • Upgraded the Pod to Swift 4.0 syntax. The interface remains unchanged.

Version 2.1 | Swift 3.0 / XCode 8

  • Added initializers to programmatically create the view.

Version 2.0 | Swift 3.0 / XCode 8

  • Upgraded the Pod to Swift 3.0 syntax. The interface remains unchanged.

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

To use within your project, simply assign the SCSiriWaveformView class to a UIView, optionally play with the properties such as wave color, frequency, number of waves, etc, all which are settable from within the Interface Builder itself and you're all set! You can then use the amplitude property to interact with the waveform. For example if you had:

@IBOutlet weak var audioView: SwiftSiriWaveformView!

you could use

audioView.amplitude = 1.0

Installation (CocoaPods)

SwiftSiriWaveformView is available through CocoaPods. To install it, simply add the following lines to your Podfile:

For Cocoapods >= 1.0

use_frameworks!
target "YOUR_PROJECT_NAME" do
    pod "SwiftSiriWaveformView"
end

For Cocoapods < 1.0

use_frameworks!
pod "SwiftSiriWaveformView"

Installation (Manual)

Copy Pod/Classes/SwiftSiriWaveFormView.swift into your project.

Author

Alankar Misra, alankarmisra@gmail.com

License

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