We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ret=action(JavascriptInterfaceObject,sel,arg); ret会返回NSAtom 这回导致后面的if (![NSJSONSerialization isValidJSONObject:dic]) 崩溃 请问怎么处理
The text was updated successfully, but these errors were encountered:
你是模拟器吧
Sorry, something went wrong.
OC API 必须符合如下签名:
同步API.
(id) handler:(id) msg
参数可以是任何类型, 但是返回值类型不能为 void。 如果不需要参数,也必须声明,声明后不使用就行。
如果同步API返回值类型为void,调用时则会导致Crash,请务必遵守签名规范。
No branches or pull requests
ret=action(JavascriptInterfaceObject,sel,arg);
ret会返回NSAtom
这回导致后面的if (![NSJSONSerialization isValidJSONObject:dic]) 崩溃
请问怎么处理
The text was updated successfully, but these errors were encountered: