- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在一个 iOS 应用程序上工作,该应用程序实现了一个连接了 5 个图标的 UITabBarController。整个项目是通过 Storyboard 制作的。当我想为用户提供 4 个主题的选项时,我在静态 tableView 中做了这件事,我遇到了一个问题。
当用户更改主题时,先前通过 tabBar View Controller 实例化的 View Controller 不会更新到主题更改,因为它们在主题更新之前存在。我可以以某种方式关闭它们并在 UITabBar 委托(delegate)的 didSelect 方法上创建相同 View Controller 类的新实例吗?
我是否正确地处理了这个问题?任何帮助将不胜感激!
预先感谢您的帮助。
MainTabController 类:UITabBarController{
override func viewDidLoad()
{
super.viewDidLoad()
}
override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem)
{
let theme = UserDefaults.standard.string(forKey: "selectedColor")
print(theme!)
for vc in self.viewControllers!
{
if (theme == "default")
{
vc.view.backgroundColor = UIColor(red: 0xF9 , green: 0xF7 , blue: 0xF7)
}else if (theme == "theme1")
{
vc.view.backgroundColor = UIColor(red: 0x1F , green: 0xFF, blue: 0xFF)
}else if (theme == "theme2")
{
vc.view.backgroundColor = UIColor(red: 0xE3 , green: 0xFD, blue: 0xFD)
}else if (theme == "theme3")
{
vc.view.backgroundColor = UIColor(red: 0x3E, green: 0xC1, blue: 0xD3)
}
}
}
}
在每个 View Controller 中实现的示例:
override func viewDidLoad()
{
let theme = UserDefaults.standard.string(forKey: "selectedColor")
print(theme!)
if (theme == "default")
{
outerView.backgroundColor = UIColor(red: 0xF9 , green: 0xF7 , blue: 0xF7)
}else if (theme == "theme1")
{
outerView.backgroundColor = UIColor(red: 0x1F , green: 0xFF, blue: 0xFF)
}else if (theme == "theme2")
{
outerView.backgroundColor = UIColor(red: 0xE3 , green: 0xFD, blue: 0xFD)
}else if (theme == "theme3")
{
outerView.backgroundColor = UIColor(red: 0x3E, green: 0xC1, blue: 0xD3)
}
}
最佳答案
在 didSelect
中,您可以访问选项卡 VC 并根据需要更改它们(在选项卡中的任何 VC 中)
for vc in self.tabBarController!.viewControllers! {
vc.view.backgroundColor = UIColor.red
// if you want to set a property
if let other = vc as? OtherViewController {
// change here
}
}
//
如果你想在 tabBar 自定义类中使用这段代码
for vc in self.viewControllers! {
vc.view.backgroundColor = UIColor.red
// if you want to set a property
if let other = vc as? OtherViewController {
// change here
}
}
//
编辑后,您需要创建一个包含 outerView 的协议(protocol)并在每个 VC 中遵守此协议(protocol),或者强制转换为 VC 并更改其属性
关于ios - 第二次选择 UITabBarItem 时关闭之前的 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51361886/
我想将 UITabBarItem 1 的标题更改为 UITabBarItem 4 的标题。 两者都在同一个 UITabBarController 中。 我该如何更改这些标题? 最佳答案 NSArray
在我们的应用程序中,我们以编程方式动态使用自定义 UITabBarItem(见下文)。我们使用 ImageAssets 来获得暗/亮正确的图像。但它不能 100% 工作:如果我们重新启动应用程序,那就
我的代码在 Xcode 6 中运行良好。但是,更新到 Xcode 7 后,我收到了近 20 个错误和 50 个警告。这可能是 Swift 2 中的一些语法更改 解决了所有这些问题,但无法弄清楚这个:从
我的代码在 Xcode6 中运行良好。但是,更新到 Xcode7 后,我收到了近 20 个错误和 50 个警告。这可能是 Swift 2 中的一些语法更改 解决了所有这些问题,但无法弄清楚这个:从 U
尽我所能,我无法让它发挥作用。这是我的最新尝试。有人可以告诉我为什么这不起作用吗? 在我的 View Controller 的 init 方法调用的方法中: UIImage *image = [UII
在 iOS 中,TabBarController 中的 TabBar 属性是只读的。如何将自定义项目与特定 View Controller 关联?如何访问 tabBar 内的 UITabBarItem
我必须在 UITabBarItem 中设置一个有点长的标题;所以问题是: 是否可以在 UITabBarItem 中设置包含两行的标题? 我尝试过以下方法(但不起作用): UITabBarItem* m
UITabBarItem 图像的最大尺寸是多少? 最佳答案 来自苹果的 UITabBarItem 引用: The item’s image. If nil, an image is not displ
当我使用此方法初始化 UITabBarItem 时: - (id)initWithTitle:(NSString *)title image:(UIImage *)image tag:(NSInteg
如何从 UITabBar 中删除 UITabBarItem? 我还没有尝试过任何东西,因为我没有从 Google 搜索或 UITabBar、UITabBarController 或 UITabBarI
我正在尝试在 xcode、ios 中自定义我的 TabBar,但是我刚刚发现 ppl 说这是不可自定义的!另外,我确实找到了某种解决方案,但它们都不适合我。 我非常想更改 UITabBarItem 标
iPhone 版 Skype 应用程序使用动画 TabBar 图标。例如,在登录期间,最右侧的选项卡图标显示循环箭头。调用“调用”选项卡时,图标会轻轻闪烁,这显然是通过动画完成的。 我想知道如何为选项
我有一个带有四个 UIViewController 的 Nib ,每个都有一个 UITabBarItem。在运行时,根据用户选项,我需要显示或隐藏其中一个 UITabBarItems。我不知道如何删除
我正在尝试在我的应用程序中为 UITabBarItem 设置动画。 我想让图像“脉动”,向用户表明有新的东西。 我一直在寻找一段时间,但我没有找到任何东西。我将使用 UIView 的动画,但我找不到访
我有一个 UITabBarController里面有几个标签栏项目。第一个标签栏项目有一个名为 A 的 View 。它有一个名为 Click 的按钮.当我单击该按钮时, View 将导航到另一个 Vi
我想在每次选择时重新实例化与带有标签 num 的 UITabBarItem 关联的 View Controller 。我能找到的最佳解决方案使用委托(delegate)方法 tabBarControl
由于某种原因,我的 UITabBarItem 只有一张图像未显示。在我重构 Storyboard来组织它们之后,这种情况开始发生。当我运行应用程序时,不会向调试器触发任何消息,它只是不显示。图像正在
我的 Swift 4 UITabBarController 通常有四个 UITabBarItem 项。在某些情况下,它可以有五个而不是四个,但我总是希望最右边的按钮是相同的。这意味着我需要在第四个“槽
您可以看到带有阴影和类似预渲染图标的房屋图片。我怎样才能删除这个效果? 最佳答案 您需要在您的 UITabBarItem 上同时设置完成和未完成的图像,否则框架会自动为其添加光彩。以下是您的操作方法。
我会尽量解释我的问题。 当我的应用程序启动时,它会在 appdelegate 类中进行检查: if([[NSUserDefaults standardUserDefaults] boolForKey
我是一名优秀的程序员,十分优秀!