i want to play a video, but i noticed that my files are not importing to the bundle??
so I just drag and drop the AA.mp4
file to my project,
it shows ok on the project navigator, I give it show in finder, and confirm the file exists in the project
now, when i try this
NSString *bundleRoot = [[NSBundle mainBundle] bundlePath];
NSFileManager *fm = [NSFileManager defaultManager];
NSArray *dirContents = [fm contentsOfDirectoryAtPath:bundleRoot error:nil];
NSLog(@"content of bundle ::%@", dirContents);
to see the contents of my bundle, i see every other file, but not the one i have imported???
so what im i missing?
thanks!