如何在Objective-C

时间:2015-12-11 13:44:03

标签: ios objective-c storyboard

我想在 LaunchScreen 中添加一个图像,该图像出现在应用程序的第一个位置,并在几秒钟后消失。它只包含应用程序的名称和版本。在应用程序的名称下,我想拥有我公司的徽标。

我创建了一个名为ViewController的{​​{1}},并在名为LaunchScreenViewController头文件中创建了一个变量。如果我将创建的类imageView添加到LaunchScreenViewController,我会收到错误

ViewController

我不知道如何在启动屏幕上添加徽标。

我的尝试:

LaunchScreenViewController.h

Launch screens may not set custom classnames

LaunchScreenViewController.m

#import <UIKit/UIKit.h>

@interface LaunchViewController : UIViewController
@property (nonatomic, strong) UIImageView *imageView
@end

1 个答案:

答案 0 :(得分:1)

请检查您的项目设置,必须如下图所示,将xib文件显示为Launch Screen

enter image description here

同时检查Plist File以下图片property

enter image description here

如果您希望Splash Screen再多说一次,请按以下方式更新didFinishLaunchingWithOptions方法。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    sleep(3);
    return YES;
}