wendux / DSBridge-IOS

:earth_asia: A modern cross-platform JavaScript bridge, through which you can invoke each other's functions synchronously or asynchronously between JavaScript and native.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSApi中定义的方法如果是init开头的点击第二次会崩溃

wangliang0209 opened this issue · comments

如定义

  • (id) initTitleBar:(NSDictionary *) args
    {
    NSLog(@"initTitleBar");
    return nil;
    }

dsBridge.call('initTitleBar'); 连续调用几次就崩溃了

commented

oc类里,init开头的方法名是保留的,api的名称不能以init开头的的,这个忘了说明,下册更新时会在文档中加上。