基于标签的应用程序显示没有tabviews显示的视图?

时间:2012-11-17 11:02:38

标签: iphone objective-c ios5

我希望我的应用程序使用标签启动第一个主视图:信息,通知,朋友,选项但主视图不是任何标签的一部分... 见下图......

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

homeview is having tabs but no tab is selected

1 个答案:

答案 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