xcode将一个类/对象添加到子视图中

时间:2011-07-11 11:53:01

标签: xcode class uiview subview

希望你能提供帮助。我基本上需要将一个对象添加到UIView中的UIView。

在界面构建器中我有我的视图,在里面我有另一个带有图像(地图)的视图(全部使用Interface Builder完成)。第二个视图我正在使用一个名为“MainGameMapViewController”的类(原因是第一个视图是静态/包含文本/分数等,其中的视图是游戏,这整个视图可以用“MainGameMapViewController”中的代码拖动“)。

我需要将对象添加到“MainGameMapViewController”UIView。

我添加了一个名为“CharMain”的类,并在 MainViewController 中使用了此代码:

-(void) viewWillAppear:(BOOL)animated {

    CharMain* charMain = [[CharMain alloc] initWithFrame:CGRectMake(40, 280, 0, 0)];
    [self.view addSubview:charMain];

}

CharMain包含绘制矩形并添加图像的代码,这很好用,但需要将其添加到第二个视图“MainGameMapViewController”。

我已经尝试在MainGameMapViewController文件中添加代码,并且它说“错误:请求成员'视图'而不是结构或联合”,我试过了     [self addSubview:charMain];

这没有错误,但图像没有出现,我如何让它出现在第二个UIView中?谢谢!

1 个答案:

答案 0 :(得分:0)

CharMain* charMain = [[CharMain alloc] initWithFrame:CGRectMake(40, 280, 0, 0)];
//this should be your subview instead of self.view try adding it to your subview's instance.
    [MainGameMapViewControllerInstance.view addSubview:charMain];