RCTRootView 多入口初始化白屏問(wèn)題

查看RCTRootView 源碼可以看到有兩個(gè)初始化方法沪编,在有多個(gè)
RCTRootView 初始化,也就是多個(gè)入口的情況户盯,RN建議使用''initWithBridge:moduleName:''作為初始化方法竹捉。

/**
 * - Designated initializer -
 */
- (instancetype)initWithBridge:(RCTBridge *)bridge
                    moduleName:(NSString *)moduleName
             initialProperties:(NSDictionary *)initialProperties NS_DESIGNATED_INITIALIZER;

/**
 * - Convenience initializer -
 * A bridge will be created internally.
 * This initializer is intended to be used when the app has a single RCTRootView,
 * otherwise create an `RCTBridge` and pass it in via `initWithBridge:moduleName:`
 * to all the instances.
 */
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
                       moduleName:(NSString *)moduleName
                initialProperties:(NSDictionary *)initialProperties
                    launchOptions:(NSDictionary *)launchOptions;

/**
 * The name of the JavaScript module to execute within the
 * specified scriptURL (required). Setting this will not have
 * any immediate effect, but it must be done prior to loading
 * the script.
 */

常規(guī)情況,RN程序單個(gè)入口 不在介紹
多入口情況下律杠,需要初始化一個(gè)RCTBridge 對(duì)象
查看RCTBridge 源碼發(fā)現(xiàn)

/**
 * Creates a new bridge with a custom RCTBridgeDelegate.
 *
 * All the interaction with the JavaScript context should be done using the bridge
 * instance of the RCTBridgeModules. Modules will be automatically instantiated
 * using the default contructor, but you can optionally pass in an array of
 * pre-initialized module instances if they require additional init parameters
 * or configuration.
 */
- (instancetype)initWithDelegate:(id<RCTBridgeDelegate>)delegate
                   launchOptions:(NSDictionary *)launchOptions;

/**
 * DEPRECATED: Use initWithDelegate:launchOptions: instead
 *
 * The designated initializer. This creates a new bridge on top of the specified
 * executor. The bridge should then be used for all subsequent communication
 * with the JavaScript code running in the executor. Modules will be automatically
 * instantiated using the default contructor, but you can optionally pass in an
 * array of pre-initialized module instances if they require additional init
 * parameters or configuration.
 */
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
                   moduleProvider:(RCTBridgeModuleProviderBlock)block
                    launchOptions:(NSDictionary *)launchOptions;

/**

其中第二個(gè)初始化方法已經(jīng)棄用。

使用方法 RN中文網(wǎng)給出如下解釋
http://reactnative.cn/docs/0.47/native-modules-ios.html

id<RCTBridgeDelegate> moduleInitialiser = [[classThatImplementsRCTBridgeDelegate alloc] init];

RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:moduleInitialiser launchOptions:nil];

RCTRootView *rootView = [[RCTRootView alloc]
                        initWithBridge:bridge
                            moduleName:kModuleName
                     initialProperties:nil];
id<RCTBridgeDelegate> moduleInitialiser = [[classThatImplementsRCTBridgeDelegate alloc] init];

這個(gè)classThatImplementsRCTBridgeDelegate 不是很清晰
這里其實(shí)就是 一個(gè)實(shí)現(xiàn)RCTBridgeDelegate協(xié)議的類(lèi)
查看RCTBridgeDelegate 源碼


@protocol RCTBridgeDelegate <NSObject>

/**
 * The location of the JavaScript source file. When running from the packager
 * this should be an absolute URL, e.g. `http://localhost:8081/index.ios.bundle`.
 * When running from a locally bundled JS file, this should be a `file://` url
 * pointing to a path inside the app resources, e.g. `file://.../main.jsbundle`.
 */
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge;

有一個(gè)sourceURLForBridge 方法

所以我們新建一個(gè)類(lèi)遵循RCTBridgeDelegate代理方法柿赊,實(shí)現(xiàn)sourceURLForBridge方法

#import <Foundation/Foundation.h>
#import <React/RCTBridgeDelegate.h>
#import <React/RCTBridge.h>

@interface MallBridgeAPI : RCTBridge
/** 單例 */
+ (MallBridgeAPI *)shareInstance;
@end

@interface MallBridgeHandle : NSObject<RCTBridgeDelegate>

@end

#import "MallBridgeAPI.h"


@implementation MallBridgeAPI
static MallBridgeAPI *defaultHandle = nil;
+ (MallBridgeAPI *)shareInstance
{
    @synchronized(self){
        if (defaultHandle == nil) {
            defaultHandle = [[MallBridgeAPI alloc] initWithDelegate:[[MallBridgeHandle alloc]init] launchOptions:nil];
        }
    }
    return defaultHandle;
}
@end


@implementation MallBridgeHandle

- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
#if DEBUG
    return [NSURL URLWithString:@"http://127.0.0.1:8081/index.ios.bundle?platform=ios"];
#else
    return [[NSBundle mainBundle] URLForResource:@"index.ios" withExtension:@"jsbundle"];
#endif
    
}
@end

至此 RCTBridge 實(shí)例俩功,即可 使用classThatImplementsRCTBridgeDelegate 完成初始化

  
self.rootView = [[RCTRootView alloc]initWithBridge:[MallBridgeAPI shareInstance]
                                          moduleName:@"MyShopVC"
                                   initialProperties:@{@"schemeType":@"debug",@"isSelectedProvider":@(isSelectedProvider)}];
  
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市碰声,隨后出現(xiàn)的幾起案子诡蜓,更是在濱河造成了極大的恐慌,老刑警劉巖胰挑,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蔓罚,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡瞻颂,警方通過(guò)查閱死者的電腦和手機(jī)豺谈,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)贡这,“玉大人茬末,你說(shuō)我怎么就攤上這事。” “怎么了丽惭?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵击奶,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我责掏,道長(zhǎng)柜砾,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任换衬,我火速辦了婚禮痰驱,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘瞳浦。我一直安慰自己担映,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布叫潦。 她就那樣靜靜地躺著另萤,像睡著了一般。 火紅的嫁衣襯著肌膚如雪诅挑。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,764評(píng)論 1 290
  • 那天泛源,我揣著相機(jī)與錄音拔妥,去河邊找鬼。 笑死达箍,一個(gè)胖子當(dāng)著我的面吹牛没龙,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播缎玫,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼硬纤,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了赃磨?” 一聲冷哼從身側(cè)響起筝家,我...
    開(kāi)封第一講書(shū)人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎邻辉,沒(méi)想到半個(gè)月后溪王,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡值骇,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年莹菱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片吱瘩。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡道伟,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出使碾,到底是詐尸還是另有隱情蜜徽,我是刑警寧澤祝懂,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站娜汁,受9級(jí)特大地震影響嫂易,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜掐禁,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一怜械、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧傅事,春花似錦缕允、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至响鹃,卻和暖如春驾霜,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背买置。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工粪糙, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人忿项。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓蓉冈,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親轩触。 傳聞我的和親對(duì)象是個(gè)殘疾皇子寞酿,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容