0

これは私の実装です。もちろん、ヘッダー ファイル内のすべてのプロパティとアウトレットを初期化しました。私は 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

`

4

1 に答える 1

0

ビデオは通常、シミュレーターで再生されません。ビデオが正しく再生されることを確認するには、実際のデバイスで実行する必要がある場合があります。


また、デバッガーでNSZombieEnabledMallocStackLogging、およびガード mallocを設定してみてください。次に、アプリがクラッシュしたら、gdb コンソールに次のように入力します。

(gdb) info malloc-history 0x543216

をクラッシュの原因となったオブジェクトのアドレスに置き換える0x543216と、より有用なスタック トレースが得られ、問題の原因となっているコード内の正確な行を特定するのに役立ちます。

詳細な手順については、この記事を参照してください。

于 2011-10-19T00:07:43.233 に答える