Невозможно отобразить видео с использованием анализатора XML - PullRequest
0 голосов
/ 19 октября 2011

Это моя реализация, я, конечно, инициализировал все свойства и выходы в заголовочном файле. Я новичок в программировании Xcode и Obj-c и пытаюсь воспроизвести это видео на симуляторе iOS5, который не работает. Любая помощь или указатели будут высоко ценится.

#import "VideoMainViewController.h"
#import "HotdogAppDelegate.h"
#import "Video.h"

@implementation VideoMainViewController
@synthesize videoArray; 
@synthesize currentCateogry;
@synthesize secondView;
@synthesize thumbContainerView;

NSXMLParser *xmlParser;

-(VideoMainViewController *) initWithXML{
self.videoArray = [NSMutableArray arrayWithCapacity:0];
self.secondView = [[VideoSecondViewController alloc] init];
[self.view addSubview:thumbView];


NSString* path = [[NSBundle mainBundle] pathForResource:@"videos" ofType:@"xml"];   
NSURL *url = [NSURL fileURLWithPath:path];
xmlParser = [[NSXMLParser alloc] initWithContentsOfURL:url];
[xmlParser setShouldProcessNamespaces:YES];
[xmlParser setDelegate:self];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onVideoBackClick) name:@"onVideoBack" object:self.secondView];

HotdogAppDelegate *application = (HotdogAppDelegate *)[[UIApplication sharedApplication] delegate];
[application addViewController:&self];
[super init];
return self;
}


-(void)viewDidLoad {
[super viewDidLoad];
}

 -(void)didReceiveMemoryWarning {
  [super didReceiveMemoryWarning]; 
  }

-(void)viewDidUnload {
[super viewDidUnload];
}

-(IBAction) onMayoClick:(id)sender{
[self.secondView loadVideos:(NSMutableArray *)[self.videoArray objectAtIndex:0]];
}
-(IBAction) onMustardClick:(id)sender{
[self.secondView loadVideos:(NSMutableArray *)[self.videoArray objectAtIndex:1]];
    }
   -(IBAction) onKetchupClick:(id)sender{
[self.secondView loadVideos:(NSMutableArray *)[self.videoArray objectAtIndex:2]];
    }

    -(void)stopVideo{
[secondView stopVideo];
    }

    -(void) reset{
[self.view addSubview:thumbView];
thumbView.alpha = 1;
if(self.secondView.view.superview){
[self.secondView.view removeFromSuperview];
}
    }


   -(void)parserDidEndDocument:(NSXMLParser *)parser{
[xmlParser release];
    }

    -(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName 
     namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName 
attributes:(NSDictionary *)attributeDict {

if([elementName isEqualToString:@"Mayo"]||
   [elementName isEqualToString:@"Mustard"]||
   [elementName isEqualToString:@"Ketchup"]) {  

    self.currentCateogry = [NSMutableArray arrayWithCapacity:0];
    [self.videoArray addObject:self.currentCateogry];

}else if ([elementName isEqualToString:@"video"]) {
    Video *video = [[Video alloc] init];
    video.thumb = [attributeDict objectForKey:@"thumb"];
    video.mp4 = [attributeDict objectForKey:@"mp4"];
    video.title = [attributeDict objectForKey:@"title"];

    [self.currentCateogry addObject:video];

}
    }

   -(void) dealloc{ 

for (NSObject *video in self.videoArray) {
    [video dealloc];
}

[self.videoArray removeAllObjects];
[self.videoArray dealloc];
[self.secondView dealloc];
[xmlParser dealloc];
    [super dealloc];
    }


    @end

`

1 Ответ

0 голосов
/ 19 октября 2011

Видео обычно не воспроизводятся в симуляторе.Вам может потребоваться запустить его на реальном устройстве, чтобы увидеть правильное воспроизведение видео.


Кроме того, попробуйте установить NSZombieEnabled , MallocStackLogging и guard malloc в отладчике.Затем, когда произойдет сбой вашего приложения, введите его в консоли gdb:

(gdb) info malloc-history 0x543216

Замените 0x543216 адресом объекта, вызвавшего сбой, и вы получите гораздо более полезную трассировку стека, и этодолжно помочь вам точно определить строку кода, которая вызывает проблему.

См. эту статью для получения более подробных инструкций.

...