瀏覽代碼

fix performSelector warning

Daniel Zlotin 7 年之前
父節點
當前提交
4b5e066046
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      lib/ios/ReactNativeNavigationTests/RNNCommandsHandlerTest.m

+ 3
- 1
lib/ios/ReactNativeNavigationTests/RNNCommandsHandlerTest.m 查看文件

@@ -45,7 +45,9 @@
45 45
 	
46 46
 	for (NSString* methodName in methods) {
47 47
 		SEL s = NSSelectorFromString(methodName);
48
-		XCTAssertThrowsSpecificNamed([uut performSelector:s withObject:nil], NSException, @"BridgeNotLoadedError");
48
+		IMP imp = [uut methodForSelector:s];
49
+		void (*func)(id, SEL) = (void *)imp;
50
+		XCTAssertThrowsSpecificNamed(func(uut,s), NSException, @"BridgeNotLoadedError");
49 51
 	}
50 52
 }
51 53