이미지를 터치하면 카카오페이로 연결됩니다!
QR 코드를 카카오페이 앱에서 촬영해주세요!
1. 개요앱을 백그라운드 상태로 두고 스키마를 통해 앱으로 진입될 때 AppDelegate에서 WebView에 callback을 줌callback에 alert가 있는 경우 CPU 사용량 100%로 치솟음과 동시에 앱 터치 먹통 2. 재현NSString* str = [[NSString alloc] initWithFormat:@"alert('Test')"];dispatch_async(dispatch_get_main_queue(), ^{ [topView stringByEvaluatingJavaScriptFromString:str];});topView는 WebView 인스턴스라고 가정AppDeleage에서 alert('Test')를 호출함 이 때 화면에 alert가 나타나며 현상 재현 3. 해결 방법NSStr..