这是我的实现,我已经初始化了头文件中的所有属性和出口。我是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
`
答案 0 :(得分:0)
视频通常不会在模拟器中播放。您可能需要在实际设备上运行它才能正常播放视频。
另外,请尝试在调试器中设置NSZombieEnabled,MallocStackLogging和guard malloc。然后,当您的应用程序崩溃时,请在gdb控制台中输入:
(gdb) info malloc-history 0x543216
将0x543216
替换为导致崩溃的对象的地址,您将获得更有用的堆栈跟踪,它可以帮助您查明代码中导致问题的确切行。