• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

从 Swift 调用可变参数 Objective-C 函数

用户头像
it1352
帮助1

问题说明

我已经总结了问题的步骤,我在Objective-C中定义了一个C函数:

I have summarized the steps of the problem, I have a C function defined in Objective-C:

ObjC.h

#import <Foundation/Foundation.h>

void cuslog(NSString *format, ...);

@interface ObjC : NSObject

@end

ObjC.m

#import "ObjC.h"

@implementation ObjC

@end

void cuslog(NSString *format, ...)
{
     // Implementation
}

我在 Bridging-Header.h 中暴露了它:

I exposed it in Bridging-Header.h:

#import "ObjC.h"

// Also tried to put this line in bridging header
void cuslog(NSString *format, ...);

在 Swift 中,我打算这样调用函数:

In Swift I intend to call the function like this:

cuslog("Some log")

但错误说:

"Use of unresolved identifier 'cuslog'"

在 Swift 中调用函数的正确方法是什么?

What is the correct way to call the function in Swift?

正确答案

#1

根据 Swift 开发者的说法,C 可变参数函数与 Swift 可变参数函数不兼容,因此您将无法直接调用您的函数.

According to the Swift devs, C variadic functions are not compatible with Swift variadics, so you won't be able to call your function directly.

目前唯一的解决方法是用 C 或 Obj-C 编写一个非可变参数包装器,并从 Swift 中调用它.

The only workaround at this time is to write a non-variadic wrapper in C or Obj-C, and call that from Swift.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfiebk
系列文章
更多 icon
同类精品
更多 icon
继续加载