2025年 4月4日(金) 13:32 JST

test code

  • 2013年 3月14日(木) 07:36 JST
  • 投稿者:
  • 表示回数 90
Geeklog
@interface MyAppsVB4ViewController : UIViewController {
// IBOutlet UIView *gameView;
IBOutlet UIView *infomationView;
IBOutlet UIView *settingsView;
IBOutlet UISegmentedControl* aMeasure;
IBOutlet UISegmentedControl* anOpponent;
UIViewController* myGameViewController;
}
-(IBAction)gameStart;
-(IBAction)settings;
-(IBAction)infomation;
-(IBAction)formInermationToMainView;
-(IBAction)formSettingsToMainView;
@end -(IBAction)gameStart {
//[self.view addSubview:gameView]; // myGameViewControllerの割当失敗処理は要らないのか?

int boardMeasure = 6 + aMeasure.selectedSegmentIndex;
NSLog(@"boardMeasure %d", boardMeasure);
/*
switch (anOpponent.selectedSegmentIndex) {
case 0:
myGameViewController = [[GameViewController alloc] initWithNibName:@"GameViewController" bundle:nil];
myGameViewController.boardMasure = boardMasure;
[self.view addSubview:myGameViewController.view];
break;
case 1:
myGameBtViewController = [[GameBtViewController alloc] initWithNibName:@"GameBtViewController" bundle:nil];
[myGameBtViewController drawBoardBGView:boardMasure];
[self.view addSubview:myGameBtViewController.view];
break;
default:
break;
}
*/

switch (anOpponent.selectedSegmentIndex) {
case 0:
myGameViewController = [[GameViewController alloc] initWithNibName:@"GameViewController" bundle:nil];
// 先攻,後攻のフラグとコマ数を渡すべき
break;
case 1:
myGameViewController = [[GameBtViewController alloc] initWithNibName:@"GameBtViewController" bundle:nil];
break;
default:
break;
}
[myGameViewController performSelector:@selector(drawBoardBGView:) withObject:[NSNumber numberWithInt:boardMeasure]];
//[[self.view addSubview:[myGameViewController performSelector:@selector(view)]];
[self.view addSubview:myGameViewController.view];

}

-(IBAction)settings {
[self.view addSubview:settingsView];
}


-(IBAction)infomation {
[self.view addSubview:infomationView];
}

-(IBAction)formInermationToMainView {
[infomationView removeFromSuperview];
}
-(IBAction)formSettingsToMainView {
[settingsView removeFromSuperview];
}

- (void)dealloc {
[myGameViewController release];
[super dealloc];
}

@end