• rn-splash-screen 启动页 ios


    1.删除iOS工程文件夹下的 LaunchScreen.xib 文件

    2.

    3.  如果第4步不一样的样式,可以重新走这个图片的步骤就行

    4.进入iOS工程的AppDelegate.m中做如下修改:


    #import <RCTSplashScreen/RCTSplashScreen.h>

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
    // [...]

    RCTRootView *rootView = // [...]

    // Show splash screen (rn-splash-screen)
    [RCTSplashScreen show:rootView]; //**********添加这行代码,注意:这行代码必须在 RCTRootView *rootView = // [...] 的下面************

    // [...]
    }

    5. 在入口文件引入
    import SplashScreen from "rn-splash-screen";

    componentDidMount(){
    //隐藏闪屏页,闪屏页用的是第三方库,rn-splash-screen
    setTimeout(() => {
        SplashScreen.hide();
      }, 2000);//延时2秒消失
    }

    }

  • 相关阅读:
    html 注释和特殊字符
    html 锚点链接
    html 链接标签
    spring 利用工厂模式解耦
    html 路径
    html 图像标签
    html div和span标签
    html 文本格式化标签
    P5358 [SDOI2019]快速查询
    luoguP2679 子串
  • 原文地址:https://www.cnblogs.com/lude1994/p/10735797.html
Copyright © 2020-2023  润新知