소스 검색

Merge pull request #72 from Vydia/use-correct-method-queue

Fix iOS Hang by Using Proper Method Queue
Gaëtan Renaudeau 8 년 전
부모
커밋
0b0699139e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      ios/RNViewShot.m

+ 1
- 1
ios/RNViewShot.m 파일 보기

18
 
18
 
19
 - (dispatch_queue_t)methodQueue
19
 - (dispatch_queue_t)methodQueue
20
 {
20
 {
21
-  return self.bridge.uiManager.methodQueue;
21
+  return RCTGetUIManagerQueue();
22
 }
22
 }
23
 
23
 
24
 - (NSDictionary *)constantsToExport
24
 - (NSDictionary *)constantsToExport