菜鸟教程小白 发表于 2022-12-13 06:14:01

ios - UITabBar setTintColor 在 [_window setRootViewController] 之后不起作用


                                            <p><p>我遇到了一个奇怪的问题。每当我的应用程序启动时,我都会在 AppDelegate 中执行以下操作:</p>

<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    [ setBarTintColor:];
    [ setTintColor:];
    [ setTintColor:];

    init]];
    RKLogConfigureFromEnvironment();
    return YES;
}
</code></pre>

<p>然后,如果我的用户成功登录,我在 AppDelegate 中执行以下操作:</p>

<pre><code>-(void)presentNewsFeed
{
    RKLogConfigureByName(&#34;RestKit/Network&#34;, RKLogLevelDebug);
    UIViewController *newTopViewController = [ instantiateViewControllerWithIdentifier:@&#34;GlobalInitialSliding&#34;];
    ;
}
</code></pre>

<p>此时,setTintColor 工作正常。现在,每当用户注销时,我都会调用:</p>

<pre><code>- (void)presentLoginScreen
{
    UIViewController *newTopViewController = [ instantiateViewControllerWithIdentifier:@&#34;Login&#34;];
    ;
}
</code></pre>

<p>它再次位于 AppDelegate 中。如果重新登录,我会再次调用 <code>presentNewsFeed</code>。但是,在第二次, setTintColor 不再起作用,并且我的所有选项卡在被选中时实际上都没有 tintColor 。所以我的用户实际上无法知道选择了哪个选项卡。关于为什么的任何想法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我在 <code>viewController</code> 中有另一个 <code>tintColor</code> 声明,它与 <code>appDelegate</code> 中的声明相混淆!</p>

<p>谢谢</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITabBar setTintColor 在 之后不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21460357/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21460357/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITabBar setTintColor 在 [_window setRootViewController] 之后不起作用