gpt4 book ai didi

ios - 如何访问 objective-c 文件中的swift公共(public)函数?

转载 作者:行者123 更新时间:2023-11-30 10:55:24 27 4
gpt4 key购买 nike

我使用如下公共(public)方法将API数据类型转换为Int。

public func convertToInt( value : Any) -> Int{
if let v = value as? String {
if let myNumber = NSNumberFormatter().numberFromString(v) {
return myNumber.integerValue
} else {
print ("Cannot convert to Int...")
}
} else if let v = value as? Int {
return v
} else if let v = value as? NSNumber {
return v.integerValue
}
return 0
}

我在我的项目中同时使用 swift 和 Objective C 文件。我也想将此函数访问到 objective-c 文件中。如果有人知道解决方案请帮助我。

最佳答案

问题在于 global Swift functions are unavailable to Objective-C ,并且协议(protocol) Any 无法在 Objective-C 中表示。

因此,一种潜在的解决方案是将您的函数封装在辅助类中,并使用 AnyObject 作为您的 value 参数 - 作为 IntString 可以分别自由桥接到 NSNumberNSString,因此在导入 Foundation 时可以将其视为对象。

@objc final class HelperFunctions : NSObject {

static func convertToInt(value : AnyObject) -> Int {
if let v = value as? String {
if let myNumber = NSNumberFormatter().numberFromString(v) {
return myNumber.integerValue
} else {
print ("Cannot convert to Int...")
}
} else if let v = value as? Int {
print("int")
return v
}

// note that this check is completely redundant as NSNumber is freely bridgable
// to Int – therefore the 'as? Int' check will always get triggered instead
else if let v = value as? NSNumber {
print("nsnum")
return v.integerValue
}
return 0
}
}

尽管如此,这确实不是非常 Swifty 的代码。 NSNumber 可桥接到 Int,因此您已经可以直接转换它:

let n = NSNumber(integer: 5)
let i = n as Int // 5

并且 Int 已经有一个可以接受字符串的初始化程序:

let i = Int("55") // Optional(55)

所以,我真的不明白这个函数正在解决什么 Swift 问题。尽管我确实看到了它正在解决的 Objective-C 问题,因此我会简单地将此函数实现为 Objective-C 文件中的 C 函数。

extern NSInteger convertToInt(id _Nonnull value);

inline NSInteger convertToInt(id _Nonnull value) {

if ([value isKindOfClass:[NSString class]]) {
NSNumberFormatter* f = [[NSNumberFormatter alloc] init];
return [f numberFromString:(NSString*)value].integerValue;
} else if ([value isKindOfClass:[NSNumber class]]) {
return ((NSNumber*)value).integerValue;
}

return 0;
}

如果您确实需要,您可以随时将其导入 Swift 中 - 然后它将作为全局函数使用。但我建议您不要将其导入回 Swift,而是找到一个更 Swifty 的解决方案来解决您的问题。

<小时/>

例如,我建议您使用协议(protocol)和扩展在 Swift 中实现此功能。您可以定义 IntRepresentable 协议(protocol)来表示可以转换为 Int 的类型。这样做的好处是,您可以明确地了解可以转换为 Int 的类型,而不是让它成为便利函数的实现细节。

protocol IntRepresentable {
func _asInt() -> Int?
}

现在您可以扩展字典可以包含的类型并使它们符合 IntRepresentable

extension NSString : IntRepresentable {
func _asInt() -> Int? {return Int(self as String)}
}

extension NSNumber : IntRepresentable {
func _asInt() -> Int? {return self.integerValue}
}

// not really necessary, as your dict will be [Whatever:AnyObject],
// so the NSString extension will be used – here for completeness
extension String : IntRepresentable {
func _asInt() -> Int? {return Int(self)}
}

extension Int : IntRepresentable {

func _asInt() -> Int? {return self}

init?(representable:IntRepresentable) {
guard let i = representable._asInt() else {return nil}
self = i
}
}

现在,您可以通过执行以下操作将字典从 [Whatever:AnyObject] 转换为 [Whatever:Int]:

let inputDict = ["foo":"5", "bar":6, "baz":NSNumber(int:5)]

var outputDict = [String:Int]()
for (key, value) in inputDict {
if let value = value as? IntRepresentable {
outputDict[key] = Int(representable: value)
}
}

print(outputDict) // ["baz": 5, "foo": 5, "bar": 6]

如果让你感觉更好的话,你总是可以把它放在一个方便的函数中,尽管我仍然主张反对全局函数。您可以使用无大小写枚举以避免污染全局命名空间:

enum DictionaryConversion {

static func toIntValues<Key>(dict:[Key:NSObject]) -> [Key:Int] {
var outputDict = [Key:Int]()
for (key, value) in dict {
if let value = value as? IntRepresentable {
outputDict[key] = Int(representable: value)
}
}
return outputDict
}
}

或者只是扩展Dictionary本身:

extension Dictionary {

func convertValuesToInt() -> [Key:Int] {
var outputDict = [Key:Int]()
for (key, value) in self {
if let value = value as? IntRepresentable {
outputDict[key] = Int(representable: value)
}
}
return outputDict
}
}

let outputDict = DictionaryConversion.toIntValues(inputDict)

let outputDict = inputDict.convertValuesToInt()

关于ios - 如何访问 objective-c 文件中的swift公共(public)函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54017469/

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