bang590 / JSPatch

JSPatch bridge Objective-C and Javascript using the Objective-C runtime. You can call any Objective-C class and method in JavaScript by just including a small engine. JSPatch is generally used to hotfix iOS App.
MIT License
11.37k stars 2.24k forks source link

GCD拓展中的JS示例代码有错误。 #803

Closed Dreamsouls closed 6 years ago

Dreamsouls commented 6 years ago

https://github.com/bang590/JSPatch/wiki/GCD-%E6%89%A9%E5%B1%95%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3 示例中最后一段代码有小错误(如下): dispatch_group_notify(group, queue, function(){ console.log(@"dispatch_group_notify"); }); 修改方案:去掉@符号即可。

bang590 commented 6 years ago

多谢 已修改