Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7947357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:24:27+00:00 2026-06-04T01:24:27+00:00

i am new to iPhone developer, i am creating ePub reader for reading ePub

  • 0

i am new to iPhone developer, i am creating ePub reader for reading ePub files.

I have plist in my iphone app and I want to read and write data to my .plist file, in which i am facing problem.

here is my code snippet,

Logic: first i am downloading an ePub file, .ePub file will be downloaded to this path

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
NSLog(@"basePath=%@",basePath);

output :-
=/Users/krunal/Library/Application Support/iPhone Simulator/5.1/Applications/6B7FCD58-EDF9-44F4-8B33-5F3542536F92/Documents

now, i want to write name of Downloaded .ePubfile into file into my .plist

code:

NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: basePath];

    [data setObject:[NSNumber numberWithInt:value] forKey:@"value"];

    [data writeToFile: plistPath atomically:YES];
    [data release];

i tried this, but i am unable to write in my .plist file.

Any Help Will be Appriciated.

Thanks In Advance !!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T01:24:29+00:00Added an answer on June 4, 2026 at 1:24 am

    Did you mean:

    NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: plistPath];
    

    ?


    untested code follows:

    Step 1: Copy the file to it’s folder.

    NSError *error1;
    BOOL resourcesAlreadyInDocumentsDirectory;
    BOOL copied1;
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePath1 = [documentsDirectory stringByAppendingString:@"/epub.plist"];
    
    resourcesAlreadyInDocumentsDirectory = [fileManager fileExistsAtPath:filePath1];
    
    if(resourcesAlreadyInDocumentsDirectory == YES) {
    
    } else {
    
        NSString *path1 = [[[NSBundle mainBundle] resourcePath] stringByAppendingFormat:@"/epub.plist"];
        copied1 = [fileManager copyItemAtPath:path1 toPath:filePath1 error:&error1];
    
        if (!copied1) {
            NSAssert1(0, @"Failed to copy epub.plist. Error %@", [error1 localizedDescription]);
        }
    }
    

    Step 2:Open it

    NSMutableDictionary* dict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath1]; 
    

    Step 3:Write data to it

    [dict setObject:[NSNumber numberWithInt:value] forKey:@"value"];
    [dict writeToFile:path atomically:YES];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a new iphone developer, question is I want to know the sym.data 's
fairly new iPhone developer here. Building an app to send RS232 commands to a
4 java developers are new to iPod Touch/iPhone app development. They have an idea
I am a new iPhone developer. By mistake I Have revoked my developer certificate.
I am new in iPhone Developer so I want learn SQLite Database from begin
New developer here. I'm making my first iPhone app. The app will display a
I am a new iPhone Application developer. I want to create an application which
i am a new beginner of iphone developer and i want to compare my
I am a relatively new iPhone app developer so my knowledge is a little
I am new developer on iPhone. My problem is that I have installed the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.