美文网首页
获取指定类所在动态库

获取指定类所在动态库

作者: rxdxxxx | 来源:发表于2018-02-28 18:40 被阅读20次
    NSLog(@"获取指定类所在动态库");
    NSLog(@"UIView's Framework: %s", class_getImageName(NSClassFromString(@"AppDelegate")));
    NSLog(@"获取指定库或框架中所有类的类名");
    unsigned int outCount = 0;
    const char ** classes = objc_copyClassNamesForImage(class_getImageName(NSClassFromString(@"AppDelegate")), &outCount);
    for (int i = 0; i < outCount; i++) {
        NSLog(@"class name: %s", classes[i]);
        
    }

    相关文章

      网友评论

          本文标题:获取指定类所在动态库

          本文链接:https://www.haomeiwen.com/subject/fqtlixtx.html