JBAudioPlayerView 1.0.1

JBAudioPlayerView 1.0.1

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新版本2015年1月

Josip Bernat维护。




用于在 iOS 中播放音频文件的简单视图组件。适用于在 UITableView 和 UICollectionView 中使用。

alt tag

Podfile

platform :ios, '7.0'
pod 'JBAudioPlayerView'

用法

您可以从 Storyboards、XIBs 或直接从代码中使用它。默认情况下,它使用 AutoLayout,但如果您希望关闭它,请设置 useAutoLayout 为 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];