随笔-XML数据解析-就是这几步

前端之家收集整理的这篇文章主要介绍了随笔-XML数据解析-就是这几步前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. #import "XMLParser.h"
  2.  
  3. @implementation TUSprojectAppDelegate_iPhone
  4.  
  5. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  6. {
  7. [self requestpushad];
  8. }
  9. -(void)requestpushad{
  10. pushdata=[[NSMutableData alloc] init];
  11. NSURL *url=[NSURL URLWithString:@"http://s3.amazonaws.com/imobile20110526/BrainwaveTuner2015/tunerpushAd.xml"];
  12. ASIHTTPRequest * myRequest = [ASIHTTPRequest requestWithURL:url];
  13. [myRequest setDelegate:self];
  14. [myRequest startAsynchronous];
  15. }
  16. - (NSString *)dataFilePath:(NSString *)name
  17. {
  18. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
  19. NSString *documentsDirectory = [paths objectAtIndex:0];
  20. return [documentsDirectory stringByAppendingPathComponent:name];
  21. }
  22. #pragma mark -
  23. #pragma mark Download support (ASIHTTPRequestDelegate)
  24. //断点下载开始
  25. - (void)requestStarted:(ASIHTTPRequest *)request
  26. {
  27. }
  28. //服务器有响应了
  29. - (void)request:(ASIHTTPRequest *)request didReceiveResponseHeaders:(NSDictionary*)responseHeaders
  30. {
  31. [self.pushdata setLength:0];
  32. }
  33. - (void)request:(ASIHTTPRequest*)request didReceiveData:(NSData *)data
  34. {
  35. [self.pushdata appendData:data];
  36. }
  37. //下载完成
  38. - (void)requestFinished:(ASIHTTPRequest *)request
  39. {
  40. NSArray *languageArray = [NSLocale preferredLanguages];
  41. NSString *language = [languageArray objectAtIndex:0];
  42. NSString *downloadPath = [self dataFilePath:@"tunnerpushAd.xml"];
  43. [self.pushdata writeToFile:downloadPath atomically:YES];
  44. NSURL *xURL = [NSURL fileURLWithPath:downloadPath isDirectory:NO];
  45. NSData *musciXmlData = [NSData dataWithContentsOfURL:xURL];
  46. XMLParser *musciXmlparser = [[XMLParser alloc] initWithData:musciXmlData];
  47. [musciXmlparser setDelegate:musciXmlparser];
  48. [musciXmlparser parse];
  49. NSMutableArray *array = [[NSMutableArray alloc] initWithArray:musciXmlparser.array];
  50. NSMutableDictionary *dicAD=[NSMutableDictionary dictionaryWithDictionary:[array objectAtIndex:0]];
  51. // NSLog(@"dicAD=======%@",dicAD);
  52. if (array!=nil&&dicAD!=nil) {
  53. NSString *timeString=[[NSUserDefaults standardUserDefaults]objectForKey:@"pushupdate"];
  54. if (![timeString isEqualToString:[dicAD objectForKey:@"pushupdate"]]) {
  55. if([[dicAD objectForKey:@"isshow"] isEqualToString:@"on"]){
  56. NSString *title=[NSString stringWithFormat:@"title_%@",language];
  57. NSString *desc=[NSString stringWithFormat:@"description_%@",language];
  58. NSMutableDictionary *adDic=[NSMutableDictionary dictionaryWithCapacity:0];
  59. [adDic setObject:[dicAD objectForKey:title] forKey:@"title"];
  60. [adDic setObject:[dicAD objectForKey:desc] forKey:@"description"];
  61. [adDic setObject:[dicAD objectForKey:@"applink"] forKey:@"applink"];
  62. [adDic setObject:[dicAD objectForKey:@"pushupdate"] forKey:@"pushupdate"];
  63. // [adDic setObject:[dicAD objectForKey:@"isshow"] forKey:@"isshow"];
  64. logodata=[[NSMutableData alloc] init];
  65. NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[dicAD objectForKey:@"logoImage"]]] delegate:self];
  66. [[NSUserDefaults standardUserDefaults] setObject:adDic forKey:@"AdInfoDicc"];
  67. [[NSUserDefaults standardUserDefaults] setObject:@"YES" forKey:@"showAD"];
  68. }else
  69. {
  70. [[NSUserDefaults standardUserDefaults] setObject:@"NO" forKey:@"showAD"];
  71. }
  72. }
  73. [self.pushdata setLength:0];
  74. }
  75. }
  76. //下载出错
  77. - (void)requestFailed:(ASIHTTPRequest *)request
  78. {
  79. [self.pushdata setLength:0];
  80. }
  81. #pragma mark -
  82. #pragma mark Download support (NSURLConnectionDelegate)
  83. - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
  84. [self.logodata appendData:data];
  85. }
  86. - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
  87. self.logodata = nil;
  88. }
  89. - (void)connectionDidFinishLoading:(NSURLConnection *)connection {
  90. // NSString *logoFileName = [self dataFilePath:@"pushAdlogo.plist"];
  91. // NSDictionary *logoDic = [NSDictionary dictionaryWithObject:self.logodata forKey:@"pushlogo"];
  92. // [logoDic writeToFile:logoFileName atomically:YES];
  93. [[NSUserDefaults standardUserDefaults]setObject:self.logodata forKey:@"logoDic"];
  94. [[NSUserDefaults standardUserDefaults]synchronize];
  95. [self.logodata setLength:0];
  96. }
  97. @end
  98.  
  99. @implementation ViewControlleriPhone
  100.  
  101. -(void)viewWillAppear:(BOOL)animated
  102. {
  103. NSMutableDictionary *adDicc = [NSMutableDictionary dictionaryWithCapacity:0];
  104. adDicc = [[NSUserDefaults standardUserDefaults]objectForKey:@"AdInfoDicc"];
  105. if ([[[NSUserDefaults standardUserDefaults]objectForKey:@"showAD"]isEqualToString:@"YES"]){
  106. self.bombImageView.image=[UIImage imageWithData:[[NSUserDefaults standardUserDefaults]objectForKey:@"logoDic"]];
  107. NSLog(@"logoimage = %@",[[NSUserDefaults standardUserDefaults]objectForKey:@"logoDic"]);
  108. self.bombLabel.text = [adDicc objectForKey:@"title"];
  109. self.bombTextView.text = [adDicc objectForKey:@"description"];
  110. if ([[[NSUserDefaults standardUserDefaults]objectForKey:@"begin"]isEqualToString:@"yes"]) {
  111. self.bombView.hidden = NO;
  112. [self.view bringSubviewToFront:self.bombView];
  113. }else
  114. {
  115. self.bombView.hidden = YES;
  116. }
  117. }else
  118. {
  119. self.bombView.hidden = YES;
  120. }
  121. }
  122. @end
  123.  

猜你在找的XML相关文章