はい、Dropbox APIを使用すると、Dropboxのユーザーのフォルダにplistをアップロードできます。セットアップへ
チェック最初this linkプロジェクト
あなたはこれらのスニペット(from this page)を使用することができます。
NSString *localPath = [[NSBundle mainBundle] pathForResource:@"Info" ofType:@"plist"];
NSString *filename = @"Info.plist";
NSString *destDir = @"/";
[[self restClient] uploadFile:filename toPath:destDir
withParentRev:nil fromPath:localPath];
その後、
- (void)restClient:(DBRestClient*)client uploadedFile:(NSString*)destPath
from:(NSString*)srcPath metadata:(DBMetadata*)metadata {
NSLog(@"File uploaded successfully to path: %@", metadata.path);
}
- (void)restClient:(DBRestClient*)client uploadFileFailedWithError:(NSError*)error {
NSLog(@"File upload failed with error - %@", error);
}
EDITコールバックを実装します。 (もしあればあなたのaドキュメントフォルダからplistを読み込むことができますpp。 mainBundleは読み取り専用であるため、メインバンドルにあるplistは変更できません)。このように:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *plistFilePath = [[paths objectAtIndex:0]stringByAppendingPathComponent:@"info.plist"];
NSDictionary *plistFile = [[NSMutableDictionary alloc] initWithContentsOfFile:plistFilePath];
出典
2012-03-10 18:10:17
Mat
あなたはマスターです!ご助力ありがとうございます ! –
少し質問(すみません)! 私のアプリのDocumentsフォルダからplistを読み込むにはどうしたらいいですか? 「Menu.plist」と呼ばれています もう一度ありがとうございます! –
@WaesAntoineあなたのために役立つなら、私の編集..をチェックして、受け入れられた答えをチェックしてください(そして望むならそれをupvoteしてください:) – Mat