383String By Appending Path Component

NSString *host = @"myhost";
NSString *videoFile = @"myVideoFileName.m4v";
NSURL *videoURL = [NSURL urlWithString[host stringByAppendingPathComponent videoFile];
 
MPMoviePlayerController *movie = [[MPMoviePlayerController alloc] initWithContentURL: videoURL];

76Header Search Paths

Search for “Header Search Paths” in Project Info, and add the path to your headers. (MacPorts headers live in /opt/local/include)

Also: #include is for System Header files.

#include "display.h" is for User Header files