I've got an app that exports an AVMutableComposition
into a .mov
file, and I'd like for the user to see the status of the export with a progress bar the same way that you would if you sent a text message or uploaded a file.
I know how to create a progress bar when I know the duration of a task (such as playing an audio file), but since there's no set duration for the export I'm unsure how to proceed.
I've got an activity indicator currently but it doesn't provide the best user experience.
Does anyone have any pointers?