JBAudioPlayerView 1.0.1

JBAudioPlayerView 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2015

Maintained by Josip Bernat.




Simple view component for playing audio files in iOS. Suitable for usage in UITableView and UICollectionView.

alt tag

Podfile

platform :ios, '7.0'
pod 'JBAudioPlayerView'

USAGE

You can use it from Storyboards, XIBs or directly from code. It uses AutoLayou by default but if you wish to turn it off just set useAutoLayout to NO.

JBAudioPlayerView *fromCode = [[JBAudioPlayerView alloc] initWithFrame:CGRectMake(10.0f, 10.0f, 200.0f, 50.0f)];
fromCode.backgroundColor = [UIColor yellowColor];
fromCode.useAutoLayout = NO;
[self.view addSubview:fromCode];