如何从同一个Swift项目中的任何文件访问自定义函数?

如何从同一个Swift项目中的任何文件访问自定义函数?,第1张

概述如果在文件范围内声明自定义函数的后缀运算符 – 如在我的 previous post中 – 必须有一种方法可以从同一Xcode项目中的另一个Swift 3文件访问这样的函数. Apple关于自定义函数的文档说明了“New operators are declared at a global level …“所以我可以假设Swift 3的创建者会认为全局访问自定义函数很重要.但是对于Swift的新手 @H_301_1@ 如果在文件范围内声明自定义函数的后缀运算符 – 如在我的 previous post中 – 必须有一种方法可以从同一Xcode项目中的另一个Swift 3文件访问这样的函数.

Apple关于自定义函数的文档说明了“New operators are declared at a global level …“所以我可以假设Swift 3的创建者会认为全局访问自定义函数很重要.但是对于Swift的新手来说,如何做到这一点并不是不言而喻的.

基于我之前接受的答案(here)中的代码,我需要做什么才能从项目中其他位置的另一个文件访问自定义函数?

最终编辑

解决方案非常简单(见accepted answer),希望其他Swift新手也可能觉得它很有用.

后缀运算符%是全局声明的,而Int的扩展从另一个文件读取Int变量. Double和CGfloat以及Int的扩展也是可能的.

CustomOperators.swift

import UIKitpostfix operator %extension Double {    static postfix func % (n: Double) -> Double {     return Double(n) /  100    }}extension Int {    static postfix func % (n: Int) -> Double {        return Double(n) /  100    }}extension CGfloat {    static postfix func % (n: CGfloat) -> Double {        return Double(n) /  100    }}

VIEwController.swift

import UIKitclass VIEwController: UIVIEwController {    let test1: Double   = 93.7    let test2: Int      = 80    let test3: CGfloat  = 70    overrIDe func vIEwDIDLoad() {        super.vIEwDIDLoad()    print(test1%)       // prints '0.937'    print(test2%)       // prints '0.8'    print(test3%)       // prints '0.7'    }}

感谢marosoiae,还有Martin R和unniversal供您参考.

编辑2

Martin R的评论促使我尝试使用Utils中定义的自定义后缀函数,但是在文件范围而不是静态后缀函数. Utils成为自定义函数的空类,所有自定义函数都在类外的文件范围内定义.

import UIKitclass VIEwController: UIVIEwController {let value: Int  = 25overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    example1()    example2()}func example1() {    // 1. call to a function in Utils with an explicit value     // and nothing returned from Utils.     // Note this uses literal postfix Syntax i.e. 25%    Utils.25%    // DeBUG message:    // Type 'Utils' has no member '25'    }func example2() {    // 2. call to a function in Utils with an argument     // declared in UIVIEwController and nothing returned from Utils    Utils.(Int: value)%    // DeBUG message    // Expected member name following '.'    }}

Utils.swift现在可以编译,但是从Xcode报告的两个示例的调试消息中可以看出,很明显,’.’后面会立即出现令牌’%’.

即使没有从Utils.swift返回变量,这显然也不是如何从项目中其他地方的文件中调用Utils.swift中的后缀函数.我的问题仍然存在:我该怎么做?

编辑1

在这一点上,包含一些代码可能会有所帮助,所以我创建了一个带有静态函数的类,遵循Unniversal的答案中使用的语法(尽可能).我决定尝试静态函数,如果这些函数有助于避免使用应该由类/结构拥有的方法来混淆全局范围.

文件1 – 实用程序

import UIKitpostfix operator %class Utils {    static func yourFunction(){    //Do your stuff here    }    static func yourFunction1(value: Int) {    print(value)    }    static postfix func % (percentage: Int) -> Double {        return (Double(percentage) / 100)    }    }

静态函数%报告

Member operator '%' must have at least one argument of type 'Utils'

一旦从另一个文件提供参数,我希望它会消失.

以下代码显示了我尝试为Utils中的静态函数提供参数的四种方法.我一次用一个例子运行项目

文件2 – UIVIEwController

import UIKitclass VIEwController: UIVIEwController {    let value: Int  = 25    var percentage  = Double()    overrIDe func vIEwDIDLoad() {        super.vIEwDIDLoad()//        example1()//        example2()//        example3()//        example4()    }func example1() {    // 1. call to a function in Utils with no argument and no return (i.e. suggested answer)    Utils.yourfunction()    // DeBUG messages:    // Type 'Utils' has no member 'yourfunction'    // DID you mean 'yourFunction'?    // DID you mean 'yourFunction1'?    }func example2() {    // 2. call to a function in Utils with argument and no return    Utils.yourfunction1(Int: Int)    // DeBUG messages:    // Type 'Utils' has no member 'yourfunction'    // DID you mean 'yourFunction'?    // DID you mean 'yourFunction1'?    }func example3() {    // 3. call to a function in Utils with argument and returning a value for percentage    Utils.%() {        return Int(percentage)    }    // DeBUG message:    // Use of unresolved operator '.%'    }func example4()  {    // 4. call to a function in Utils with argument and returning a value for percentage    percentage = Utils.%(Int: value) -> Int {        return Int(percentage)    }    // DeBUG messages:    // Use of unresolved operator '.%'    // Expected type before '->'    // Expected type after '->'    }}

据我所知,静态函数Utils.yourFunction和Utils.yourFunction1无法从外部Utils访问,如示例1和2所示.后缀运算符%似乎导致Xcode报告使用未解析的运算符’. %’,如示例3和4所示.但是,这些问题可能是我调整Unniversal使用的语法的方式.

解决方法 在文件范围内声明的任何函数都将具有内部隐式作用域,并且将在项目/模块的其余部分中可见.

我建议阅读access control guide以获取更多信息.

编辑:

我仍然不确定你要做什么,但看起来你正在将全局函数与静态方法和自定义运算符混合在一起.

如果您想要的是声明一个可以在项目中的任何其他文件中使用的自定义运算符,那么解决方案就在您的问题的documentation that you linked中.

因此,您需要为Int类型声明自定义%(如您定义的那样):

CustomOperators.swift

postfix operator %extension Int {    static postfix func % (n: Int) -> Double {        return Double(n) / 100    }}

main.swift

print(90%) //outputs "0.9"

这里的所有都是它的.您只需全局声明运算符:postfix operator%,并将运算符函数定义为Int类型的扩展中的静态方法.

现在,您可以在其他文件中使用新运算符(就像我在main.swift中所做的那样).

总结

以上是内存溢出为你收集整理的如何从同一个Swift项目中的任何文件访问自定义函数?全部内容,希望文章能够帮你解决如何从同一个Swift项目中的任何文件访问自定义函数?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1009453.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存