我有一个功能:

func chatAttachmentService(chatAttachmentService: QMChatAttachmentService, didChangeLoadingProgress progress: CGFloat, forChatAttachment attachment: QBChatAttachment)

我想在我的档案里称之为:
self.chatAttachmentService(chatAttachmentService, progress, attachment)

我知道这是一个疯狂的问题,但Xcode在输入函数名时并没有给我提示,我不知道如何正确调用它。。。

最佳答案

例如,您可以这样做:
下面是示例函数:

func testFunction(chatAttachmentService: String, didChangeLoadingProgress progress: String, forChatAttachment attachment: String) {

    //Your code
}

你可以这样称呼它:
testFunction("", didChangeLoadingProgress: "", forChatAttachment: "")

关于swift - 如何调用Swift函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37134846/

10-10 21:32