I have a video file saved in my app\'s local directory in the documents folder. I want to playback the file when the user clicks on the item in an embedded table view I crea
The mistake in you was you missed / before DemoRecording.mp4
/
It should be
NSString* path = [documentPath stringByAppendingPathComponent:@"/DemoRecording.mp4"];
Also you are writing player statements before declaring it.
player