ios – 从Objective-C访问Swift扩展

前端之家收集整理的这篇文章主要介绍了ios – 从Objective-C访问Swift扩展前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法从 objective-c访问我的swift扩展.

我在.swift文件中有以下代码

extension NSDictionary {
    func dictionaryAsJsonString() -> NSString {
        var err: NSError?
        var data = NSJSONSerialization.dataWithJSONObject(self,options: NSJSONWritingOptions.PrettyPrinted,error: &err)
        var string = NSString(data: data,encoding: NSUTF8StringEncoding)
        return string
    }
}

我希望能够在我的.m文件中执行以下操作:

[dictionary dictionaryAsJsonString];

但它找不到我的方法,也没有自动完成.

我知道我的导入工作正常,因为我能够访问我的其他swift对象.

解决方法

使用简单的词典很容易
20> extension Dictionary {
 21.     func toJSONString () -> String { return "my dictionary" }
 22. }
 23> ["a": 1,"b": 2].toJSONString()
$R10: String = "my dictionary"

Apple文档没有提到在Objective-C类上使用扩展.

原文链接:/iOS/333408.html

猜你在找的iOS相关文章