我一直在想如何在快速使用JavaScriptCore。但是,當我必須將塊作爲參數進行處理時,我遇到了問題,好像塊立即運行並且參數獲得塊的返回值。我究竟做錯了什麼?快速塊不能正常工作
工作目標C代碼:
JSContext* context = [[JSContext alloc] initWithVirtualMachine:[[JSVirtualMachine alloc] init]];
context[@"test"] = ^(NSString *string) {
//code
};
我已經試過:
1:
var ctx = JSContext(virtualMachine:JSVirtualMachine())
var ctx["test"] = {(string:NSString)->() in /*code*/ }
//Gives me "'JSContext' does not have a member named 'subscript'"
2:
3:
var ctx = JSContext(virtualMachine:JSVirtualMachine())
let n: (string: String)->() = {string in /*code*/}
ctx.setObject(n as AnyObject, forKeyedSubscript:"test")
//Gives me "Cannot downcast from '(string: String) ->() to [email protected] protocol type 'AnyObject'"
我在這裏錯過了什麼,或者這只是Swift中的一個錯誤?
class Block<T> {
let f : T
init (_ f: T) { self.f = f }
}
現在我也試着建議,然後
ctx.setObject(Block<()->Void> {
/*code*/
}, forKeyedSubscript: "test")
該解決方案讓我編譯,但我得到一個運行時錯誤:
Thread 1: EXC_BREAKPOINT (code=EXC_I386_BPT, subcode=0x0)
似乎是這個問題:http://stackoverflow.com/questions/24586293/cast-closures-blocks。 –
它是相似但不同。這個問題是關於處理你從* Objc方法作爲返回值*得到的塊。這是關於傳遞Swift閉包作爲塊*到* Objc方法。 –