我想在 LaunchScreen 中添加一个图像,该图像出现在应用程序的第一个位置,并在几秒钟后消失。它只包含应用程序的名称和版本。在应用程序的名称下,我想拥有我公司的徽标。
我创建了一个名为ViewController
的{{1}},并在名为LaunchScreenViewController
的头文件中创建了一个变量。如果我将创建的类imageView
添加到LaunchScreenViewController
,我会收到错误
ViewController
我不知道如何在启动屏幕上添加徽标。
我的尝试:
Launch screens may not set custom classnames
#import <UIKit/UIKit.h>
@interface LaunchViewController : UIViewController
@property (nonatomic, strong) UIImageView *imageView
@end