gpt4 book ai didi

ios - 无法在 swift 中使用 Objective-c block

转载 作者:搜寻专家 更新时间:2023-11-01 06:15:58 28 4
gpt4 key购买 nike

我已经在我的 objective-c 代码中减速了这个 block :

typedef void(^ActionStringDoneBlock)(ActionSheetStringPicker *picker, NSInteger selectedIndex, id selectedValue);
typedef void(^ActionStringCancelBlock)(ActionSheetStringPicker *picker);

我在 objective-c 中减速了这个 block 的一个实例,如下所示:

ActionStringDoneBlock done = ^(ActionSheetStringPicker *picker, NSInteger selectedIndex, id selectedValue) {
selectedVisa = (int) selectedIndex;
if ([visaView.textField respondsToSelector:@selector(setText:)]) {
[visaView.textField performSelector:@selector(setText:) withObject:selectedValue];
}
};

并像下面这样使用这个实例:

    [ActionSheetStringPicker showPickerWithTitle:"myTitle"
rows:visaData
initialSelection:initialSelection
doneBlock:done
cancelBlock:cancel
origin:visaView.textField
];

我的项目同时使用了 swift 和 objective-c 代码。现在我想在我的 swift 代码中的新 ViewController 中使用这些代码。我使用以下代码:

let done = {(picker: ActionSheetStringPicker?, selectedIndex:Int, selectedValue: Any?)  in

//My Codes

}

let cancel = {
(_ picker: ActionSheetStringPicker) -> Void in

}

ActionSheetStringPicker.show(withTitle: "My Title",
rows: messageTitleData,
initialSelection: initialSelection,
doneBlock: done as ActionStringDoneBlock,
cancel: cancel as! ActionStringCancelBlock,
origin: messageTitle.textField
)

但我在 swift 代码中遇到以下错误:

EXC_BREAKPOINT

我已将 done as ActionStringDoneBlock 的输出打印到控制台,我看到以下结果:

error: :3:1: error: cannot convert value of type '() -> ()' to type 'ActionStringDoneBlock' (aka '(Optional, Int, Optional) -> ()') in coercion

我还尝试如下定义 done:

  let done = {(picker: Optional<ActionSheetStringPicker>, selectedIndex:Int, selectedValue: Optional<Any>)  in

//My Codes

}

但又遇到了同样的错误。有人知道 swift 代码中的问题是什么吗?

最佳答案

您需要注释闭包类型并省略传递的类型

let done : ActionStringDoneBlock  = { (picker, selectedIndex, selectedValue)  in ... }

let cancel : ActionStringCancelBlock = { picker in ... }

如果没有注释,闭包将被视为 () -> ()。这就是错误消息所说的内容。

关于ios - 无法在 swift 中使用 Objective-c block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45030325/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com