简体   繁体   English

iPhone读/写.plist文件

[英]iPhone read/write .plist file

I'm making a application where I need to store some information the user have provided. 我正在创建一个应用程序,我需要存储用户提供的一些信息。 I try to use a .plist file to store the information, I found this: 我尝试使用.plist文件来存储信息,我发现:

NSString *filePath = @"/Users/Denis/Documents/Xcode/iPhone/MLBB/data.plist";
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
[plistDict setValue:@"Man" forKey:@"Gender"];
[plistDict writeToFile:filePath atomically: YES];

The problem is that the application will only work as long as I'm testing it in the iPhone simulator. 问题是只要我在iPhone模拟器中测试它,应用程序才会起作用。 I've tried this Changing Data in a Plist but without luck. 我已经在Plist中尝试了这个更改数据,但没有运气。 I have also read something about that I need to add it to my bundle, but how? 我还读过一些关于我需要将它添加到我的包中的内容,但是如何?

New code: 新代码:

- (IBAction)segmentControlChanged{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *plistLocation = [documentsDirectory stringByAppendingPathComponent:@"data.plist"];
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:plistLocation];

if (Gender.selectedSegmentIndex == 0) {
    [plistDict setObject:@"Man" forKey:@"Gender"];
    [plistDict writeToFile:plistLocation atomically: YES];
}
else
{
    [plistDict setObject:@"Women" forKey:@"Gender"];
    [plistDict writeToFile:plistLocation atomically: YES];
}
}

I guess you have added your plist file to your resources folder in Xcode (where we place image, if not then you need to place that first). 我猜你已经将你的plist文件添加到Xcode中的资源文件夹中(我们放置图像,如果没有,那么你需要先放置它)。 Resources data goes to [NSBundle mainBundle] by default and iOS does not allow us to change data inside bundle. 资源数据默认转到[NSBundle mainBundle] ,iOS不允许我们更改bundle内的数据。 So first you need to copy that file to Documents Directory. 首先,您需要将该文件复制到Documents Directory。

Here is the code for copying file from NSBundle to the Documents directory. 以下是将文件从NSBundle复制到Documents目录的代码。

- (NSString *)copyFileToDocumentDirectory:(NSString *)fileName {
    NSError *error;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
                                                         NSUserDomainMask,
                                                         YES);
    NSString *documentsDir = [paths objectAtIndex:0];
    NSString *documentDirPath = [documentsDir
                                      stringByAppendingPathComponent:fileName];

    NSArray *file = [fileName componentsSeparatedByString:@"."];
    NSString *filePath = [[NSBundle mainBundle]
                                         pathForResource:[file objectAtIndex:0]
                                                  ofType:[file lastObject]];

    NSFileManager *fileManager = [NSFileManager defaultManager];
    BOOL success = [fileManager fileExistsAtPath:documentDirPath];

    if (!success) {
        success = [fileManager copyItemAtPath:filePath
                                       toPath:documentDirPath
                                        error:&error];
        if (!success) {
        NSAssert1(0, @"Failed to create writable txt file file with message \
                                         '%@'.", [error localizedDescription]);
        }
    }

    return documentDirPath;
}

Now you can use the returned documentDirPath to access that file and manipulate (Read/Write) over that. 现在,您可以使用返回的documentDirPath访问该文件并对其进行操作(读/写)。

The plist structure is: plist结构是:

<array>
    <dict>key-value data</dict>
    <dict>key-value data</dict>
</array>

Here is code to write data into plist file: 这是将数据写入plist文件的代码:

/* Code to write into file */

- (void)addToMyPlist {
    // set file manager object
    NSFileManager *manager = [NSFileManager defaultManager];

    // check if file exists
    NSString *plistPath = [self copyFileToDocumentDirectory:
                                                       @"MyPlistFile.plist"];

    BOOL isExist = [manager fileExistsAtPath:plistPath];    
    // BOOL done = NO;

    if (!isExist) {
        // NSLog(@"MyPlistFile.plist does not exist");
        // done = [manager copyItemAtPath:file toPath:fileName error:&error];
    }
    // NSLog(@"done: %d",done);

    // get data from plist file
    NSMutableArray * plistArray = [[NSMutableArray alloc]
                                           initWithContentsOfFile:plistPath];

    // create dictionary using array data and bookmarkKeysArray keys
    NSArray *keysArray = [[NSArray alloc] initWithObjects:@"StudentNo", nil];
    NSArray *valuesArray = [[NSArray alloc] initWithObjects:
                                   [NSString stringWithFormat:@"1234"], nil];

    NSDictionary plistDict = [[NSDictionary alloc]
                                                  initWithObjects:valuesArray
                                                          forKeys:keysArray];

    [plistArray insertObject:poDict atIndex:0];

    // write data to  plist file
    //BOOL isWritten = [plistArray writeToFile:plistPath atomically:YES];
    [plistArray writeToFile:plistPath atomically:YES];

    plistArray = nil;

    // check for status
    // NSLog(@" \n  written == %d",isWritten);
}

Are you using that same path on your device? 您是否在设备上使用相同的路径? Apps on a device are sandboxed and can only read/write files in their documents directory. 设备上的应用程序是沙箱,只能读取/写入其文档目录中的文件。 Grab that file path like this and append your plist name. 抢文件路径这样的和追加的plist中的名称。 This approach will also work on the simulator. 这种方法也适用于模拟器。

Try this: 试试这个:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *plistLocation = [documentsDirectory stringByAppendingPathComponent:@"myplist.plist"];

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM