Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm searching for some phrases from a plist, and would like to update such statements to the screen every touch, but I can not find a solution to the problem, so I ask help on how to implement this, my code is below.

int RecordIndexDitados = 0;

NSMutableArray *dictDitados;

NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path stringByAppendingPathComponent:@"Ditados.plist"];
NSDictionary *plistData = [[NSDictionary dictionaryWithContentsOfFile:finalPath] retain];

NSDictionary *ditados = [plistData objectForKey:@"Ditados"];
NSMutableArray *selection = [[ditados objectForKey:@"Selection"] mutableCopy];

RecordIndexDitados = arc4random()%[selection count];

// Select and display currently selected record from the array.
dictDitados = [selection objectAtIndex:RecordIndexDitados]

CCLabel *ditados = [CCLabel labelWithString:@"Question" 
                                     dimensions:CGSizeMake(400, 200)
                                      alignment:UITextAlignmentCenter
                                       fontName:@"Brush Script" fontSize:36];
    ditados.color = ccc3(0, 74, 128);
    [ditados setPosition:ccp(240, 120)];
    [self addChild: ditados];
    [ditados setString:[NSString stringWithFormat:@"%@",dictDitados]];

<plist version="1.0">
<dict>
    <key>Ditados</key>
    <dict>
        <key>Selection</key>
        <array>
            <string>Text 1</string>
            <string>Text 2</string>
            <string>Text 3</string>     
        </array>
    </dict>
</dict>
</plist>
share|improve this question
please supply an example of your plist – Bongeh Mar 15 '11 at 14:46

3 Answers

why don't you load your plist in memory and update your content from there? this way you load your data from the plist only once..not every time you touch the screen.

share|improve this answer

Plist to load into memory, it would be this way, right?

NSMutableArray * selection = [[NSMutableArray alloc] init];

I'm not able to manipulate the data from the plist to see the texts randomly through touch, need help to solve this problem. Thanks!

share|improve this answer

1st read the contents of plist into some temp object(string,array or directory) as you designed plist.

2nd know insert the updated value into temp object.

3rd assign the temp object to main object.

4th write the main object into file.

For your better understanding refer this like:

http://iphonesdevsdk.blogspot.com/2011/04/plist.html

it may helps you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.