10

我无法从objective-c 访问我的快速扩展。

我在 .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 对象。

4

3 回答 3

1

只需使用字典就很容易了

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

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

于 2014-06-03T23:05:41.170 回答
1

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

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

// elsewhere...

var d = NSDictionary(object: "bar", forKey: "foo")
d.myFooBar()
于 2014-08-14T09:03:13.190 回答
1

简而言之:

文件配置设置:

CustomClass.h
CustomClass.m
CustomClassExtension.swift

在 CustomClassExtension 中:

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

在任何其他类别中:

self.customClass = [[CustomClass alloc] init];
[self.customClass method1];
于 2020-07-22T06:25:20.497 回答