gpt4 book ai didi

iphone - 如何在我的所有 View 底部添加通用 UIButton 而不是 iPhone 中的 tabsview Controller ?

转载 作者:行者123 更新时间:2023-12-03 19:53:43 24 4
gpt4 key购买 nike

我想将UIbutton放在底部,它应该显示在我的所有 View 上,例如我想打开的UIButton的tabBar和onclick菜单 View ,如何实现此功能,我为此尝试了很多,也进行了很多谷歌搜索,但没有提及正确实现此功能的方法,所以请建议我实现此功能的正确方法

This image contain at bottom one 'Team' button, onclick of that 'Team' the menu view should open look next screen shot for that

The black view contaning menu should open

最佳答案

我之前通过在 Appdelegate 类中添加一个按钮来完成此操作。我不知道这是否是正确的方法,但它确实有效。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
viewController = [[SUSAViewController alloc] initWithNibName:@"SUSAViewController" bundle:nil];

nav=[[UINavigationController alloc]initWithRootViewController:viewController];
self.window.rootViewController = nav;

UIButton *mybtn=[UIButton buttonWithType:UIButtonTypeRoundedRect];
mybtn.frame=CGRectMake(40, 200, 200, 200);
[mybtn setTitle:@"My Button" forState:UIControlStateNormal];

[nav.view addSubview:mybtn];

[self.window makeKeyAndVisible];

return YES;
}

如果您不使用NavigationController,则只需添加[self.window addSubview:mybtn];希望它对您有用。

关于iphone - 如何在我的所有 View 底部添加通用 UIButton 而不是 iPhone 中的 tabsview Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13909521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com