#import "RecipeBookViewController.h"
#import "RecipeDetailViewController.h"
#import "RecipeIngredientViewController.h"
#import "RecipeInstructionViewController.h"
#import "Recipe.h"
@interface RecipeBookViewController ()
@end
@implementation RecipeBookViewController {
NSArray *recipes;
}
@synthesize tableView = _tableView;
- (void)viewDidLoad
{
[super viewDidLoad];
}
我是否可以为启动屏幕添加一秒钟以显示更长的时间?我将在哪里添加代码?
Best Answer-推荐答案 strong>
您可以显示一个带有完整尺寸 UIImageView 的 UIViewController,并将您的初始图像作为您的 UIWindow 的 rootViewController 。
在您的 viewDidAppear 中,有一个方法可以更改使用 performSelector:afterDelay: 调用的 UIViewController
[self performSelectorselector(changeViewControllerMethod) withObject:nil afterDelay:5.0];
关于ios - 向启动屏幕添加额外时间,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/30053643/
|