我希望我的应用程序使用标签启动第一个主视图:信息,通知,朋友,选项但主视图不是任何标签的一部分... 见下图......
homeview有标签但没有选择标签:
答案 0 :(得分:1)
您可以创建一个UIView
并在didLoad
中添加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.
}
中删除。或者您可以更改第一个tabe的视图,并在按任何选项卡时将其删除。
{{1}}
然后你在didLoad中调用这个meathon