i will like to seek advise on what should i do next in order to pass a list of data from Plist to an array.
i will like to pass the plist data to my tableview BrowseViewController.m, but i do not know how to do it.
i tried NSlog, the plist are passing info over but i don't know wat is my next step.
can anyone teach me ? thanks alot.
this is my 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">
<array>
<dict>
<key>AudioFileDescriptions</key>
<array>
<string></string>
<string></string>
<string></string>
<string></string>
</array>
<key>CommonName</key>
<string>Cane Toad </string>
<key>ScientificName</key>
<string>Bufo marinus </string>
<key>Species</key>
<string>marinus</string>
</dict>
my app delegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
// Override point for customization after application launch.
// Add the tab bar controller's current view as a subview of the window
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
//load frog information from plist
NSBundle *bundle = [NSBundle mainBundle];
NSString *eventsPath = [bundle pathForResource:@"Frog" ofType:@"plist"];
frogObject = [Frog frogObjectWithContentsOfFile:eventsPath];
return YES;
}
Frog.m
+ (id)frogObjectWithContentsOfFile:(NSString *)aPath
{
Frog *frogObject = [[Frog alloc] init];
if (frogObject) {
// load all frogs from plist
NSMutableArray *allFrogsArray = [NSArray arrayWithContentsOfFile:aPath];
//NSDictionary *allFrogsArray = [NSDictionary dictionaryWithContentsOfFile:aPath];
if (allFrogsArray == nil) {
[frogObject release];
}
[frogObject.allFrogs addObjectsFromArray:allFrogsArray];
// iterate through each event and put them into the correct array
NSEnumerator *frogsEnumerator = [allFrogsArray objectEnumerator];
NSDictionary *currentFrog;
while (currentFrog = [frogsEnumerator nextObject]) {
[frogObject addFrog:currentFrog];
}
// NSLog(@"FrogObject %@",allFrogsArray);
}
return frogObject;
}
- (void)addFrog:(NSDictionary *)anFrog;
{
NSLog(@"anFrog Value %@",anFrog);
}