0

1つのメインVCと他のVC、およびメインVC内の他のVCの定義。これらの他のvcsは、クラスにuiviewsを持っています。これらの他のvcsをサブビューとしてメインvcに追加するにはどうすればよいですか?

- (void)viewDidLoad{
UIView *baseView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

[self.view addSubview:baseView];
// Displays UIImageView
UIImageView *myImage = [[UIImageView alloc]
                     initWithImage:[UIImage imageNamed:@"ka1_046.png"]];
myImage.frame = CGRectMake(0, 0, 320, 460);
[baseView addSubview:myImage]; 
// create the UIToolbar at the bottom of the view controller
toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 425, 320, 40)];
toolbar.barStyle = UIBarStyleBlackOpaque;
[baseView addSubview:toolbar];

//Add Play Button
self.playButton = [UIButton buttonWithType:UIButtonTypeCustom];
[self.playButton addTarget:self action:@selector(playpauseAction:) forControlEvents:UIControlEventTouchUpInside];
self.playButton.frame = CGRectMake(0, 0, 30, 30);
[self.playButton setImage:[UIImage imageNamed:@"Play Icon.png"] forState:UIControlStateNormal];
[self.playButton setImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateSelected];
 UIBarButtonItem *play = [[UIBarButtonItem alloc] initWithCustomView:self.playButton];

-(void)playpauseAction:(id)sender {
if([audioPlayer isPlaying])
{
[sender setImage:[UIImage imageNamed:@"Play Icon.png"] forState:UIControlStateSelected];
[audioPlayer pause];
[self pauseTimer];
[self pauseLayer:self.view.layer];

}else{
[sender setImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateNormal];
[audioPlayer play];
[self resumeTimer];
[self resumeLayer:self.view.layer];
 if(isFirstTime == YES)
{
    self.timer = [NSTimer scheduledTimerWithTimeInterval:11.0
                                        target:self
                                        selector:@selector(displayviewsAction:)
                                         userInfo:nil
                                         repeats:NO];
    isFirstTime  = NO;
}} }


- (void)displayviewsAction:(id)sender{  
 First *first = [[First alloc] init];
 first.view.frame = CGRectMake(0, 0, 320, 480);
 CATransition *transitionAnimation = [CATransition animation];   
 [transitionAnimation setDuration:1];
 [transitionAnimation setType:kCATransitionFade];
 [transitionAnimation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];
 [self.view.layer addAnimation:transitionAnimation forKey:kCATransitionFade];
 [baseView addSubview:first.view];
 [self.view addSubview:toolbar];
 [first release];  

displayviewactionの場合、私はします

[baseView addSubview:first.view];  

そのため、playpauseActionに従って、サブビューとして11秒後にUIImageViewがfirst.viewに置き換えられます。宣言されていない識別子baseViewを使用しているというメッセージが表示されます。

手伝ってくれてありがとう。

4

2 に答える 2

1

-(void)viewDidLoad内でbaseViewを宣言しています。その範囲はそのメソッド内に制限されています。iVarとして宣言します。

@interface YourMainViewController : UIViewController
{
  UIView* baseView;
}

@property (nonatomic,retain) UIView* baseView;

あなたはドリルを知っています。

于 2012-07-03T00:37:02.523 に答える
1

//.h

@interface ViewController : UIViewController {

UIView *baseView;

}

@property (nonatomic, retain) UIView *baseView;

// .m

@synthesize baseView;

この部分を作る:

- (void)viewDidLoad{
UIView *baseView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

[self.view addSubview:baseView];

これに:

- (void)viewDidLoad{
self.baseView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

[self.view addSubview:self.baseView];

これ作って:

[baseView addSubview:first.view];

これに:

[self.baseView addSubview:first.view];

または、上記を引き続き使用できます。

その後、完了です。:)

于 2012-07-03T00:34:46.503 に答える