gpt4 book ai didi

ios - 执行字符串中定义的代码

转载 作者:行者123 更新时间:2023-11-29 11:02:42 25 4
gpt4 key购买 nike

我希望能够执行一段在字符串中定义的代码。我知道 performSelector: 但执行选择器的对象会有所不同。

示例字符串

[[AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo] hasFlash]
[UIImagePickerController isCameraDeviceAvailable:UIImagePickerControllerCameraDeviceFront]

所以我想做的是

SEL selector = NSSelectorFromString(@"[[AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo] hasFlash]");
if (selector) {
// Show flash buttons
}

最佳答案

不能触发调用嵌套方法调用选择器

选择器只是方法名称,显示参数数量为 method:abc:yxa:

如下语句:

SEL selector = NSSelectorFromString(@"[[AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo] hasFlash]");

正在打电话

[AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]

然后

[objectReturnedByAbove hasFlash]

关于ios - 执行字符串中定义的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15155880/

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