我可以在AudioPlot Frame中显示波形,但我无法以图片的形式显示它。 EZAudio有这样的方法吗?我该如何使用它?
答案 0 :(得分:1)
EZAudio没有这样的方法 您可以从this solution尝试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