iPhone视频播放器例子
时间: 2009-06-11 19:46 点击: 次
代码的作者是hobbut
原文地址(俄文):http://blog.weho.ru/2008/04/primer-prostogo-videopleera.html
main.m:
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int ret = UIApplicationMain(argc, argv, [SimpleMoviePlayerApp class]);
[pool release];
return ret;
}
SimpleMoviePlayer.h:
#import <UIKit/UIKit.h>
#import <GraphicsServices/GraphicsServices.h>
#import <MoviePlayerUI/UIEventObservableWindow.h>
#import <MoviePlayerUI/UIMovieView.h>
#import <MoviePlayerUI/UIMoviePlayerController.h>
@interface SimpleMoviePlayerApp : UIApplication
{
UIEventObservableWindow *mainWindow;
UIMoviePlayerController *playerController;
}
@end
SimpleMoviePlayer.m
#import "SimpleMoviePlayerApp.h"
@implementation SimpleMoviePlayerApp
- (void)applicationDidFinishLaunching:(GSEventRef)event;
{
struct CGRect mainFrame = CGRectMake(0,0,320,480);
mainWindow = [[UIEventObservableWindow alloc] initWithContentRect:mainFrame];
playerController = [[UIMoviePlayerController alloc] initWithPlayerSize:[UIHardware mainScreenSize] isFullScreen:YES];
[[playerController playerView] setCanShowControlsOverlay:YES];
[playerController setControlsOverlayVisible:YES disableAutohide:NO animate: YES];
[playerController setAutoPlayWhenLikelyToKeepUp:YES];
[playerController setDelegate:self];
[playerController prepareAndSetupUI];
[[playerController movieView] setMovieWithPath:@"http://192.168.0.2/video.m4v"];
[mainWindow setContentView:[playerController playerView]];
[mainWindow orderFront:self];
}
- (void)moviePlayerDidFinishPlayback: (UIMoviePlayerController *)player userExited: (BOOL)userExited
{
NSLog(@"player normal exit");
[self terminateWithSuccess];
}
- (void)applicationWillTerminate;
{
NSLog(@"app normal exit");
[playerController release];
[mainWindow release];
}
@end
你可以在这里下载这个源代码。
顶一下(1)
50%
踩一下(1)
50%
发表评论
本类文章点击排行榜
- [06-11] CocoaChina整理的开源iPhone程序不
- [06-11] 获取iPhone用户手机号
- [05-11] 制作iPhone PXL安装包的方法
- [06-11] iPhone横屏效果代码
- [06-11] 创建iPhone锁定划动条的方法
- [06-11] iPhone视频播放器例子
- [06-11] 如何搭建自己的iPhone Installe
- [06-11] 解决iPhone网络软件在睡眠情况
- [06-11] 在iPhone 2.0(非App Store)上执行
最近更新
- [01-28] 在iPhone App中使用Thumb指令集
- [01-22] 用ToolChain开发App,且和DEV有相同环境
- [06-11] 在iPhone 2.0(非App Store)上执行程序的方法
- [06-11] 将iPhone toolchain 1.x移植到toolchain 2.x
- [06-11] 在程序中关闭iPhone
- [06-11] 创建iPhone锁定划动条的方法
- [06-11] 获取iPhone用户手机号
- [06-11] 解决iPhone网络软件在睡眠情况断线问题
- [06-11] iPhone横屏效果代码


在iPhone App中使用Thumb指令集
创建iPhone锁定划动条的方法
如何搭建自己的iPhone Installer软件源