Waver

像 Siri 一样摇摆。「Siri like waver」

Github stars Tracking Chart

#Waver

Build Status

A Siri like wave effect

Requirements

Waver works on iOS 7.0 and later version and is compatible with ARC projects. It depends on the following Apple frameworks, which should already be included with most Xcode templates:

  • Foundation.framework
  • UIKit.framework
  • CoreGraphics.framework
  • QuartzCore.framework

You will need LLVM 3.0 or later in order to build Waver.

Usage

Cocoapods

CocoaPods is the recommended way to add Waver to your project.

  1. Add a pod entry for Waver to your Podfile pod 'Waver', '~> 0.2.0'
  2. Install the pod(s) by running pod install.
  3. Include Waver wherever you need it with #import "Waver.h".

Or Copy the Waver folder to your project

Example

Waver * waver = [[Waver alloc] initWithFrame:CGRectMake(0, CGRectGetHeight(self.view.bounds)/2.0 - 50.0, CGRectGetWidth(self.view.bounds), 100.0)];

__weak Waver * weakWaver = waver;
waver.waverLevelCallback = ^() {

    [self.recorder updateMeters];

    CGFloat normalizedValue = pow (10, [self.recorder averagePowerForChannel:0] / 50);

    weakWaver.level = normalizedValue;

};
[self.view addSubview:waver];

License

This code is distributed under the terms and conditions of the MIT license.

SpecialThanks

https://github.com/stefanceriu/SCSiriWaveformView

Overview

Name With Ownerkevinzhow/Waver
Primary LanguageObjective-C
Program languageObjective-C (Language Count: 2)
Platform
License:MIT License
Release Count3
Last Release Name0.3.0 (Posted on )
First Release Name0.1.0 (Posted on )
Created At2014-12-14 06:23:01
Pushed At2018-01-04 00:32:20
Last Commit At2015-08-25 16:17:56
Stargazers Count790
Watchers Count21
Fork Count114
Commits Count33
Has Issues Enabled
Issues Count11
Issue Open Count6
Pull Requests Count2
Pull Requests Open Count3
Pull Requests Close Count1
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top