This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
So the problem I am having is that when I try to load a video this way: -(void) viewDidLoad { MyManager *sharedManager = [MyManager sharedManager]; [super viewDidLoad]; NSString *tempName = sharedManager.vidName; NSLog(@"%@", tempName); //This is where the problem is being caused NSString *url = [[NSBundle mainBundle] pathForResource:tempName ofType:@"mp4"]; //This is [...] read more