I am storing a video file of size more than 1 GB and storing into homeDirectory. I am trying to convert into NSData object as follows
NSData *videoData = [[NSData alloc] initWithContentsOfFile:filePath];
but here I am getting video data as nil. When I tried for video of 500 MB it is working fine.
Is there any limitation on size while converting into NSData?