菜鸟教程小白 发表于 2022-12-13 06:58:22

ios - 向启动屏幕添加额外时间


                                            <p><pre><code>#import &#34;RecipeBookViewController.h&#34;
#import &#34;RecipeDetailViewController.h&#34;
#import &#34;RecipeIngredientViewController.h&#34;
#import &#34;RecipeInstructionViewController.h&#34;
#import &#34;Recipe.h&#34;

@interface RecipeBookViewController ()

@end

@implementation RecipeBookViewController {
    NSArray *recipes;
}

@synthesize tableView = _tableView;

- (void)viewDidLoad
{
    ;
}
</code></pre>

<p>我是否可以为启动屏幕添加一秒钟以显示更长的时间?我将在哪里添加代码? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以显示一个带有完整尺寸 UIImageView 的 UIViewController,并将您的初始图像作为您的 UIWindow 的 <code>rootViewController</code>。</p>

<p>在您的 viewDidAppear 中,有一个方法可以更改使用 <code>performSelector:afterDelay:</code></p> 调用的 UIViewController

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 向启动屏幕添加额外时间,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30053643/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30053643/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 向启动屏幕添加额外时间