-1

我希望我的应用程序启动第一个带有选项卡的主视图:信息、通知、朋友、选项,但主视图不是任何选项卡的一部分……见下图……。

homeview 有标签,但没有选择标签:

homeview 有标签,但没有选择标签

4

1 回答 1

1

您可以创建一个UIViewdidLoad添加 sub-view到您的视图中,并在任何tab单击时将其从super-view. 或者您可以更改第一个标签的视图并在按下任何标签时将其删除。

-(void)staySafe_meathod
{
  UIView *temp_one = [[UIView alloc] initWithFrame:CGRectMake(0,0,120,120)];
  [self.view addsubView:temp_one];//or the tab view u set it default show when the app open.

}

然后你在 didLoad 中称这个肉食

于 2012-11-17T11:28:46.813 回答