这是我如何能够添加一个UIProgressView
recording
是AVCaptureFileOutput
其扩展的属性AVCaptureMovieFileOutput
我有一个类型的变量 movieFileOutput,AVCaptureMovieFileOutput
用于将数据捕获到 QuickTime 电影。
@property (nonatomic) AVCaptureMovieFileOutput *movieFileOutput;
我在记录属性中添加了一个观察者来检测记录的变化。
[self addObserver:self
forKeyPath:@"movieFileOutput.recording"
options:(NSKeyValueObservingOptionOld | NSKeyValueObservingOptionNew)
context:RecordingContext];
然后在回调方法中:
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context;
我创建了一个在后台执行的 while 循环,然后我确保将更新分派到主线程上的视图,如下所示:
dispatch_async([self sessionQueue], ^{ // Background task started
// While the movie is recording, update the progress bar
while ([[self movieFileOutput] isRecording]) {
double duration = CMTimeGetSeconds([[self movieFileOutput] recordedDuration]);
double time = CMTimeGetSeconds([[self movieFileOutput] maxRecordedDuration]);
CGFloat progress = (CGFloat) (duration / time);
dispatch_async(dispatch_get_main_queue(), ^{ // Here I dispatch to main queue and update the progress view.
[self.progressView setProgress:progress animated:YES];
});
}
});