91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

React Native如何消除啟動時白屏的方法

發布時間:2020-09-10 17:51:41 來源:腳本之家 閱讀:366 作者:code_xzh 欄目:web開發

在RN 項目啟動之后有一個短暫的白屏,調試階段白屏的時間較長,大概3-5秒,打正式包后這個白屏時間會大大縮短,大多時候都是一閃而過,所以稱之為“閃白”。

React Native如何消除啟動時白屏的方法

React Native如何消除啟動時白屏的方法

其實解決的方案也有很多,這里做一個簡單的總結。

白屏的原因

在iOS App 中有 啟動圖(LaunchImage),啟動圖結束后才會出現上述的閃白,這個過程是 js 解釋的過程,JS 解釋完畢之前沒有內容,所以才表現出白屏,那么解決的方法就是在啟動圖結束后,JS 解釋完成前做一些簡單的處理。

解決的常見方案:

  • 啟動圖結束后通過原生代碼加載一張全屏占位圖片,跟啟動圖一樣的圖片,混淆視聽“欺騙用戶”。
  • JS解釋完畢后通知原生可以移除占位圖
  • 收到 JS 發來的可以移除占位圖的通知,移除占位圖

代碼實現

新建一個SplashScreen 文件用來接收 JS 發來的”移除占位圖”的消息。相關代碼如下:

SplashScreen.h

#import <Foundation/Foundation.h>
 #import "RCTBridgeModule.h"
 @interface SplashScreen : NSObject<RCTBridgeModule>

 @end

SplashScreen.m

#import "SplashScreen.h"
 @implementation SplashScreen

 RCT_EXPORT_MODULE();

 RCT_EXPORT_METHOD(close){
  [[NSNotificationCenter defaultCenter] postNotificationName:@"Notification_CLOSE_SPLASH_SCREEN" object:nil];
 }
 @end

在AppDelegate.m 加入以下代碼:

@interface AppDelegate ()
 {
  UIImageView *splashImage;
 }
 @end

 @implementation AppDelegate

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(closeSplashImage) name:"Notification_CLOSE_SPLASH_SCREEN" object:nil];

   ...
   [self autoSplashScreen];//寫在 return YES 之前,其他代碼之后
   return YES;
 }
 -(void)autoSplashScreen {
  if (!splashImage) {
   splashImage = [[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds];
  }
  if (IPHONESCREEN3p5) {
   [splashImage setImage:[UIImage imageNamed:@"launch5"]];
  }else if (IPHONESCREEN4){
   [splashImage setImage:[UIImage imageNamed:@"launch6"]];
  }else if (IPHONESCREEN4p7){
   [splashImage setImage:[UIImage imageNamed:@"launch7"]];
  }else if (IPHONESCREEN5p5){
   [splashImage setImage:[UIImage imageNamed:@"launch7"]];
  }
  [self.window addSubview:splashImage];
 }
 -(void)closeSplashImage {
    dispatch_sync(dispatch_get_main_queue(), ^{
     [UIView animateWithDuration:0.5 animations:^{
      splashImage.alpha = 0;
     } completion:^(BOOL finished){
      [splashImage removeFromSuperview];
     }];
    });
 }

在合適的時機選擇移除占位圖。js端代碼:

if (Platform.OS === 'ios') {
   NativeModules.SplashScreen.close();
 };

 更加詳細的信息可以訪問:https://github.com/crazycodeboy/react-native-splash-screen/blob/master/README.zh.md

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

怀仁县| 宜章县| 隆尧县| 黔西县| 云龙县| 天峨县| 正安县| 庐江县| 渭南市| 凭祥市| 秀山| 修武县| 灯塔市| 沙雅县| 靖江市| 日土县| 乌拉特中旗| 甘洛县| 永和县| 阳朔县| 砚山县| 柳林县| 黎城县| 庆元县| 新郑市| 新安县| 虞城县| 胶州市| 鹤壁市| 西丰县| 静海县| 绥德县| 灵川县| 枣强县| 两当县| 隆安县| 杭锦旗| 凌云县| 满城县| 巨野县| 庄浪县|