0

次の PLIST があり、辞書にネストされた Assistant Identifier にアクセスする必要があります。問題は、アカウントの下の最初のキー (4FD9E669 で始まる...) が各デバイスに固有であることです。辞書キーを知らずにアシスタント識別子を返すにはどうすればよいですか?

ここに私のPLISTがあります:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Accounts</key>
    <dict>
        <key>4FD9E669-A5EA-4526-A6D2-0440858221A6</key>
        <dict>
            <key>Assistant Identifier</key>
            <string>05483ADC-23E1-400E-83E8-F7365063F56F</string>
            <key>Last Assistant Data Anchor</key>
            <string>c1e3ad3c51d7fb962b29ca2deb4990c0f6ae8962</string>
            <key>Speech Identifier</key>
            <string>dcaf7c87-c023-456c-a200-7db8bd5e10f1</string>
            <key>Validation Expiration</key>
               <date>2012-07-17T22:37:37Z</date>
        </dict>
    </dict>
    <key>Session Language</key>
    <string>en-US</string>
</dict>
</plist>

A.Identifier がわかっている場合に機能する次のことを試しました...(これは役に立ちません)

NSString* filename = @"/var/mobile/Library/Preferences/com.apple.assistant.plist";
NSMutableDictionary* prefs = [[NSMutableDictionary alloc] initWithContentsOfFile:filename];

NSMutableDictionary* nestedPrefs = (NSMutableDictionary*)[prefs valueForKey:@"Accounts"];

NSMutableDictionary* aPrefs = (NSMutableDictionary*)[nestedPrefs valueForKey:@"4FD9E669-A5EA-4526-A6D2-0440858221A6"];

NSString* assistantPref = (NSString*)[aPrefs valueForKey:@"Assistant Identifier"];

UIAlertView *theAlert = [[UIAlertView alloc] initWithTitle:@"Assistant Identifier" message:assistantPref  delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[theAlert show];
[theAlert release];

助けてください!ありがとう!

4

1 に答える 1

1

一見すると、必要なキーにたどり着くまで、すべてのキーをループするだけです。

for (NSString *key in [nestedPrefs allKeys]) {
    // Pick which key is the one you want
}

あなたがそうする必要はないと思います。これは、正しいキーを見つけるステップをスキップするロジックです。

for (NSMutableDictionary *aPrefs in [nestedPrefs allValues]) {
    NSString* assistantPref = [aPrefs valueForKey:@"Assistant Identifier"];
    if (assistantPref) {
       // Whatever you need.
    }
}

それが役立つことを願っています。

于 2012-07-18T00:05:46.880 に答える