please do not use
#import "<AVFoundation/AVFoundation.h>"
use this
#import <AVFoundation/AVFoundation.h>
we can import two types of library
the first is a system library developed by Apple
imported as
#import <Library.h>
The second is the classes implemented by the application developer.
as
#import "Library.h"
source share