为了账号安全,请及时绑定邮箱和手机立即绑定

效果出来了 但是tabbar感觉是整体下移了一些位置,咋整?

效果出来了 但是tabbar感觉是整体下移了一些位置,咋整?

iOS
噜噜哒 2023-04-15 18:14:34
最近刚学习IOS,现有一个登陆界面,还有一个包含多个选项卡的界面在点击登陆界面的登陆按钮时跳转至含tabbar的界面,我该怎么实现了?希望有人能给出思路,如果有关键代码最好了在ViewController.m中登陆按钮的代码如下UIViewController *controller=[[Tabbarcontroller alloc]init];[self presentModalViewController:controller animated:YES];在TabbarController.h中@property(strong,nonatomic) UITabBarController *controller;然后是在TabbarController.m中的@synthesize controller;-(id) initWithNibName(NSString *)nibNameOrNil bundle:(NSBundle *)nibBoundleOrNil {    self=[super initWithNibName:nibNameOrNil bundle:nibBoundleOrNil];    UIViewController *first=[[First alloc]initWithNibName:@"First" bunlde:nil];    UIViewController *second=[[Second alloc]initWithNibName:@"Second" bunlde:nil];     controller=[[UITabBarController alloc]init];     controller.viewControllers=[NSArray arrayWithObjects:first,second,nil];     [self.view addSubView:controller.view];    if(self){     }    return self; }效果出来了 但是tabbar感觉是整体下移了一些位置(头部有一些空白,tabbar选项卡底部被遮盖了)
查看完整描述

1 回答

?
海绵宝宝撒

TA贡献1809条经验 获得超8个赞

简单实现方法:你的项目建立在tabbarcontroller的基础上。
在appdelegate的

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

方法中,使用

[self.tabBarController presentModalViewController:loginNC animated:NO];

这样,你打开程序,首先显示的登陆页面,点击登陆,在登陆的事件中加上下述代码

[self dismissModalViewControllerAnimated:YES];

这样就实现了你想要的效果。

稍微麻烦点的方法:你的项目建立在singleview的基础上(单一viewController)。再写一个otherTabBarController,

UIViewController *vc1 = [[[UIViewController alloc] init] autorelease];
vc1.view.backgroundColor = [UIColor redColor];UIViewController *vc2 = [[[UIViewController alloc] init] autorelease];
vc2.view.backgroundColor = [UIColor blueColor];

[self setViewControllers:[NSArray arrayWithObjects:vc1,vc2, nil]];

点击登陆就使用

[viewController presentModalViewController:otherTabBarController animated:YES];

otherTabBarController要继承自UITabBarController,这样就没有底部挡住的问题。

最初我给的答案是使用继承自UIViewController的方法。
不过我觉得这样写的代码层次会有些冗余。不如直接继承自UITabbarController作为容器。

用系统的tabbarcontroller会挡住,至于原因因为系统的这套TabBarController.view的尺寸是320*480,而默认建立的singleview项目,是有statusBar的20像素存在,这样,viewController的尺寸是320*460,而在这个的基础上addSubview的尺寸(320*480)大于本身,自然按照左上角对齐,就导致向下偏移20像素。

当然你也可以在AppDelegate的

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

中加上

[[UIApplication sharedApplication] setStatusBarHidden:YES];

解决偏移的问题。


查看完整回答
反对 回复 2023-04-18
  • 1 回答
  • 0 关注
  • 132 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信