When I create an iOS project,and "Build Phases -> Link binary with Libraries", I add the AVFoundation.framework lib and use #import "<AVFoundation/AVFoundation.h>"
. I get a compilation error:
"AVFoundation/AVFoundation.h file not found".
Here's my code:
#import <UIKit/UIKit.h>
#import "<AVFoundation/AVFoundation.h>"
How can I resolve this?