tulip09020618 / WaveView

create wave view and wave progress view quickly and simple.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WaveView

create wave view and wave progress view quickly and simple.

Now Supports Cocoapods.

use cocoapods import the framework.

pod 'WaveView', '~> 0.1.2'

import wave.h file

#import <wave.h>

then you can create WaveView and WaveProgressView Easily. Test code:

WaveView *wave = [[WaveView alloc] initWithFrame:self.view.bounds];
[self.view addSubView:wave];

WaveProgressView *progress = [[WaveProgressView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
progress.percent = 0.5;
[self.view addSubView:progress];

Detail Information

WaveView

WaveProgressView效果

About

create wave view and wave progress view quickly and simple.

License:MIT License


Languages

Language:Objective-C 98.9%Language:Ruby 1.1%