ハードウェアまたはシミュレーターで起動すると、アプリに黒い画面が表示されます。カスタマイズされた起動はありません。デフォルトの黒い起動画面があり、脱獄した iPod Touch 4G、6.1.3 にアプリを配置しようとしました。
Controller.h を表示
#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController : UIViewController
@property (strong, nonatomic) MPMoviePlayerController * mcp;
@end
Controller.m を表示
@implementation ViewController
@synthesize mcp;
- (void)viewDidLoad
{
NSURL *movieURL = [NSURL URLWithString:@"http://streamer35.eboundservices.com:1935/tv/humtv/playlist.m3u8?wmsAuthSign=c2VydmVyX3RpbWU9Ny8zMC8yMDEzIDg6MTI6MzEgUE0maGFzaF92YWx1ZT1odmptUTNGVGxSazd6Mlp6dk91eW5RPT0mdmFsaWRtaW51dGVzPTIw"];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL: movieURL];
[player prepareToPlay];
[player.view setFrame: self.view.bounds]; // player's frame must match parent's
mcp = player;
[self.view addSubview: mcp.view];
[mcp play];
}