c++の所に
viewer.showFullScreen();
viewer.showExpanded();
を追加し、再コンパイル
オープンソースプロジェクトVASDAQ.TV誕生!
WWW.VASDAQ.TVサービスサイト : VASDAQ.TVオープンソースプロジェクトサイト
デジタルサイネージ、見える化マネジメントを実現するリアルタイムWeb時代のテレビです
国経本誌はこちらからどうぞ 国際経済新聞
- (void)applicationDidFinishLaunching:(UIApplication *)application {
CGRect rect = [window frame];
UILabel *label = [[UILabel alloc] initWithFrame:rect];
label.text = @"Hello world!";
[window addSubview:label];
[label release];
[window makeKeyAndVisible];
}
int retVal = UIApplicationMain(argc, argv, nil, @"HelloWorldAppDelegate");
- (void)applicationDidFinishLaunching:(UIApplication *)application {
CGRect frameForWindow = [[UIScreen mainScreen] bounds];
window = [[UIWindow alloc] initWithFrame:frameForWindow];
.
.