0

バンドルから読み書き用のルート ディレクトリに配置した新しい plist オブジェクトに読み込んだ plist があります。私の質問は、これをどうするか、アプリケーションが終了したときに何をするか、そして iOS の「マルチタスク」メニューからアプリが強制終了されたときに何が起こるかです。

また、アプリケーションが再び使用されたときに将来使用するために、この plist をメモリ/バンドルに保存する方法もあります。

私のコードは参考のために次のとおりです。

これが私の.hです

    #import <Foundation/Foundation.h>

    @interface EngineProperties : NSObject {

    NSString *signature;
    NSNumber *version;
    NSNumber *request;
    NSNumber *dataVersion;
    NSMutableDictionary *cacheValue;
    //cachevalue Items
    NSNumber *man;
    NSNumber *mod;
    NSNumber *sub;

    }

    @property (copy, nonatomic) NSString *signature;
    @property (copy, nonatomic) NSNumber *version;
    @property (copy, nonatomic) NSNumber *request;
    @property (copy, nonatomic) NSNumber *dataVersion;
    @property (copy, nonatomic) NSMutableDictionary *cacheValue;
    //cachevalue Items
    @property (copy, nonatomic) NSNumber *man;
    @property (copy, nonatomic) NSNumber *mod;
    @property (copy, nonatomic) NSNumber *sub;



    //Singletton
+ (id)sharedManager;
    - (void) saveData:(NSString *)methodName signature:(NSString *)pSignature Version:(NSNumber *)pVersion request:(NSNumber *)rNumber dataVersion:(NSNumber *)dvReturned cacheValue:(NSNumber *)cValue;

    @end

ここに私の.mがあります

 #import "EngineProperties.h"

static EnginePropertiesController *sharedMyManager = nil;

    @implementation EngineProperties

    @synthesize signature;
    @synthesize version;
    @synthesize request;
    @synthesize dataVersion;
    @synthesize cacheValue;

    @synthesize man;
    @synthesize mod;
    @synthesize sub;



    #pragma mark Singleton Methods
+ (id)sharedManager {
    @synchronized(self) {
        if (sharedMyManager == nil)
            sharedMyManager = [[self alloc] init];
    }
    return sharedMyManager;
}
- (id)init {
    if (self = [super init]) {

        // Data.plist code
        // get paths from root direcory
        NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
        // get documents path
        NSString *documentsPath = [paths objectAtIndex:0];
        // get the path to our Data/plist file
        NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"EngineProperties.plist"];

        // check to see if Data.plist exists in documents
        if (![[NSFileManager defaultManager] fileExistsAtPath:plistPath])
        {
            // if not in documents, get property list from main bundle
            plistPath = [[NSBundle mainBundle] pathForResource:@"EngineProperties" ofType:@"plist"];
        }

        // read property list into memory as an NSData object
        NSData *plistXML = [[NSFileManager defaultManager] contentsAtPath:plistPath];
        NSString *errorDesc = nil;
        NSPropertyListFormat format;
        // convert static property liost into dictionary object
        NSDictionary *tempRoot = (NSMutableDictionary *)[NSPropertyListSerialization propertyListFromData:plistXML mutabilityOption:NSPropertyListMutableContainersAndLeaves format:&format errorDescription:&errorDesc];
        if (!tempRoot)
        {
            NSLog(@"Error reading plist: %@, format: %d", errorDesc, format);
        }
        // assign values
        self.signature = [tempRoot objectForKey:@"Signature"];
        self.version = [tempRoot objectForKey:@"Version"];
        self.request = [tempRoot objectForKey:@"Request"];
        self.dataVersion = [tempRoot objectForKey:@"Data Version"];

        man = [cacheValue objectForKey:@"Man"];
        mod = [cacheValue objectForKey:@"Mod"];
        sub = [cacheValue objectForKey:@"SubMod"];

        cacheValue = [tempRoot objectForKey:@"Cache Value"];
    }


    - (void) saveData:(NSString *)methodName signature:(NSString *)pSignature Version:(NSNumber *)pVersion request:(NSNumber *)rNumber dataVersion:(NSNumber *)dvReturned cacheValue:(NSNumber *)cValue;
    {
        // get paths from root direcory
        NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
        // get documents path
        NSString *documentsPath = [paths objectAtIndex:0];
        // get the path to our Data/plist file
        NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"EngineProperties.plist"];

        // set the variables to the values in the text fields
        self.signature = pSignature;
        self.version = pVersion;
        self.request = rNumber;
        self.dataVersion = dvReturned;

        //do some if statment stuff here to put the cache in the right place or what have you.
        if (methodName == @"manufacturers")
        {
            self.man = cValue; 
        }
        else if (methodName == @"models")
        {
            self.mod = cValue;
        }
        else if (methodName == @"subMod")
        {
            self.sub = cValue;
        }

        self.cacheValue = [NSDictionary dictionaryWithObjectsAndKeys:
                           man, @"Manufacturers",
                           mod, @"Models",
                           sub, @"SubModels", nil];


        NSDictionary *plistDict = [NSDictionary dictionaryWithObjectsAndKeys:
                                   signature, @"Signature",
                                   version, @"Version",
                                   request, @"Request",
                                   dataVersion, @"Data Version",
                                   cacheValue, @"Cache Value", nil];



        NSString *error = nil;
        // create NSData from dictionary
        NSData *plistData = [NSPropertyListSerialization dataFromPropertyList:plistDict format:NSPropertyListXMLFormat_v1_0 errorDescription:&error];

        // check is plistData exists
        if(plistData)
        {
            // write plistData to our Data.plist file
            [plistData writeToFile:plistPath atomically:YES];

            NSString *myString = [[NSString alloc] initWithData:plistData encoding:NSUTF8StringEncoding];
            //        NSLog(@"%@", myString);
        }
        else
        {
            NSLog(@"Error in saveData: %@", error);
            //        [error release];
        }
    }


    @end
4

3 に答える 3

0

plistをNSUserDefaultsにすばやく簡単に保存できます

このクイックチュートリアルをチェックしてください:

http://www.cocoadev.com/index.pl?NSUserDefaults

于 2012-04-10T21:53:54.820 に答える
0

彼らがコードも提供したそのリンクの打撃リンクに従ってください。.plist ファイルへのデータの書き込み/読み取り方法。

プリスト

于 2012-04-10T04:59:22.400 に答える
0

正直なところ、plistの値を要求して変更する頻度によって異なります。たとえば、私のアプリはそれを 1 回取得するだけで済み、それから数回 (大したことはありません) 書き込む必要があったため、すべての保存コードは上記の特定のメソッドの最後にありました。

ただし、plist が有効な場合 (常に値が変化する場合)、AppDelegate からアクセスできる、保存したいデータへの参照を保持することをお勧めします。そうすれば、単にbeginBackgroundTaskWithExpirationHandler:on を呼び出しapplicationDidResignActiveて、plist データを保存できます。

(注: ユーザーがアプリを完全に保存する前に強制終了するほど高速な場合 (大きな場合)、plist の整合性に関する保証はありません)。

于 2012-04-10T03:37:19.320 に答える