i am prepararing an ios application. i am using following code
NSString * yol=[[NSBundle mainBundle]pathForResource:@"TavsiyeKitapAile" ofType:@"plist"];
NSDictionary * tka = [XMLReader dictionaryForXMLData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.bahcevan.org/kat.php?kat=64"]] error:nil];
[tka writeToFile:yol atomically:YES];
NSMutableDictionary * dic = [[NSMutableDictionary alloc]initWithContentsOfFile:yol];
it is working well on simulator but when i open it, i couln't see data. nothing comes. i think it is related with bundle but i couldn't solve it.