Swift功能swizzling /运行时

前端之家收集整理的这篇文章主要介绍了Swift功能swizzling /运行时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Swift之前,在Objective-C中,我将使用< objc / runtime.h>在一个类中进行swizzle或hook方法

如果任何人有任何关于修改Swift的运行时和挂起功能(如CydiaSubstrate和其他帮助此领域的库)的信息,请通知我。

我在Swift中用方法swizzling成功。这个例子展示了如何在NSDictionary上挂钩描述方法

我的实现:

extension NSDictionary {
     func myDescription() -> String!{
        println("Description hooked")
        return "Hooooked " + myDescription();
    }
}

开关代码

func swizzleEmAll() {
        var dict:NSDictionary = ["SuperSecret": kSecValueRef]
        var method: Method = class_getInstanceMethod(object_getClass(dict),Selector.convertFromStringLiteral("description"))

        println(dict.description) // Check original description

        var swizzledMethod: Method = class_getInstanceMethod(object_getClass(dict),Selector.convertFromStringLiteral("myDescription"))
        method_exchangeImplementations(method,swizzledMethod)

        println(dict.description) //Check that swizzling works
    }

编辑:
代码将适用于从NSObject继承的任何自定义Swift类(但不适用于没有的类)。更多示例 – https://github.com/mbazaliy/MBSwizzler

猜你在找的Swift相关文章