从Objective-C访问Swift扩展

时间:2014-06-03 22:55:09

标签: ios objective-c swift swift-extensions

我无法从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];

但它无法找到我的方法并且无法自动完成。

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

3 个答案:

答案 0 :(得分:1)

这可能是您在6月份尝试的早期版本中的错误或不完整的实施。它可以在最新的测试版中扩展NSDictionary。例如,此非常复杂的扩展和使用按预期工作,代码完成:

extension NSDictionary {
    func myFooBar() {
        println("gaaah")
    }
}

// elsewhere...

var d = NSDictionary(object: "bar", forKey: "foo")
d.myFooBar()

答案 1 :(得分:0)

使用简单的词典

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

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

答案 2 :(得分:0)

简而言之:

文件配置设置:

CustomClass.h
CustomClass.m
CustomClassExtension.swift

在CustomClassExtension中:

@objc extension CustomClass
{
    func method1() 
    {
        ...
    }
}

在其他任何班级:

self.customClass = [[CustomClass alloc] init];
[self.customClass method1];