-1

我可以在 AudioPlot Frame 中显示一个波形,但我无法以图片的形式得到它。EZAudio有这样的方法吗?我该如何使用它?

4

1 回答 1

1

EZAudio 没有这样的方法。您可以从Tim
那里 尝试这个解决方案(为方便起见,复制如下)。

#import "QuartzCore/QuartzCore.h" after you added the framework to your project. Then do:

UIGraphicsBeginImageContext(yourView.frame.size);
[[yourView layer] renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

// The result is *screenshot
于 2015-05-07T10:10:18.273 回答