I\'m trying to get my app to play a video file that\'s been downloaded to the documents directory. I know the file is getting downloaded, but I can\'t seem to get the file t
Issue will be with this line: NSString *path = [documentsDirectory stringByAppendingPathComponent:@"%@/piggy.m4v"];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"%@/piggy.m4v"];
Change that to NSString *path = [documentsDirectory stringByAppendingPathComponent:@"piggy.m4v"];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"piggy.m4v"];