Hi all
I have a pdf file in my iPad application. I want to save that pdf file on iPad so that I can read it out of my application. I am using the following path for save pdf file on iPad:-
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fileBPath = [documentsDirectory stringByAppendingPathComponent:@"tmp.pdf"];
But I am not able to find this pdf file on my iPad.
Can anyone suggest me how can I find it ?
Is file path wrong? then suggest me the file path for saving the pdf file ?
Thanks in Advance