0

一个主vc和其他vc以及在main 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

//。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 回答
1

您在 -(void) viewDidLoad 中声明 baseView。它的范围仅限于该方法。将其声明为 iVar。

@interface YourMainViewController : UIViewController
{
  UIView* baseView;
}

@property (nonatomic,retain) UIView* baseView;

你知道该怎么做。

于 2012-07-03T00:37:02.523 回答