美文网首页
runtime的使用

runtime的使用

作者: 小雨雨儿 | 来源:发表于2016-10-09 09:11 被阅读7次

1.动态获得类的所有属性
注:需要导入头文件:#import <objc/runtime.h>

+ (NSArray *)getAllProperties {
    NSMutableArray *arrM = [NSMutableArray array];
    unsigned int count = 0;
    // 获得指定类的所有属性
    objc_property_t *properties = class_copyPropertyList([self class], &count);
    for (int index = 0; index < count; ++index) {
        // 对应的属性
        objc_property_t property = properties[index];
        const char *name = property_getName(property);
        // C语言转OC
        NSString *ocName = [[NSString alloc] initWithCString:name encoding:NSUTF8StringEncoding];
        
        [arrM addObject:ocName];
    }
    return arrM;
}

2.动态的遍历一个类的所有成员变量

- (void)viewDidLoad {    
  [super viewDidLoad];      
  unsigned int count = 0;   
 /** Ivar:表示成员变量类型 */    
  Ivar *ivars = class_copyIvarList([BDPerson class], &count);//获得一个指向该类成员变量的指针   
 for (int i =0; i < count; i ++) {        
//获得Ivar      
  Ivar ivar = ivars[i];        //根据ivar获得其成员变量的名称--->C语言的字符串      
  const char *name = ivar_getName(ivar);       
   NSString *key = [NSString stringWithUTF8String:name];      
  NSLog(@"%d----%@",i,key);
}
}

3.为分类添加属性
使用objc_setAssociatedObject方法给分类添加属性

const char *XYKey = "XYKey";
- (void)setName:(NSString *)name {
     //  @param object#> 某个象添加属性
     // @param key#>     保存属性值使用key
     // @param value#>   属性的值
     // @param policy#>  属性修饰词
     objc_setAssociatedObject(self, XYKey, name, OBJC_ASSOCIATION_COPY_NONATOMIC);
}

- (NSString *)name {
     return objc_getAssociatedObject(self, XYKey);
}

4.动态交换两个方法的实现
可使用runtime的交互方法,给系统的方法添加功能. 实现 : 添加一个分类 --> 在分类中提供一个需要添加的功能的方法 --> 将这个方法的实现和系统自带的方法的实现交互.

#import <UIKit/UIKit.h>

@interface UIImage (XYImage)
+ (UIImage *)xy_imageName:(NSString *)imageName;
@end

在.m文件中

#import "UIImage+XYImage.h"
#import <objc/runtime.h>

@implementation UIImage (XYImage)
+ (void)load {
    Method imageNameMethod = class_getClassMethod(self, @selector(imageNamed:));
    Method xy_imageNameMethod = class_getClassMethod(self, @selector(xy_imageName:));
    // 交换方法的地址
    method_exchangeImplementations(imageNameMethod, xy_imageNameMethod);
}

+ (UIImage *)xy_imageName:(NSString *)imageName {
    UIImage *image = [UIImage xy_imageName:imageName];
    if (!image) {
        NSLog(@"图片不存在");
    }
    return image;
}

使用:(会打印出图片不存在)

#import "ViewController.h"
#import "UIImage+XYImage.h"
@interface ViewController ()
@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    [UIImage imageNamed:@"abc.png"];
}

相关文章

  • Runtime

    Runtime:运行时使用Runtime就是使用苹果提供的API使用Runtime可以实现OC无法实现的:1.使用...

  • runtime的用法

    1.使用runtime改变变量值 2.使用runtime交换方法 3.使用runtime添加方法 4.使用runt...

  • runTime常用方法

    使用runTime改变实例成员的值 使用runtime来交换两个方法 注意再次调用该方法不交换 使用runTime...

  • Objective-C runtime 详解

    Objective-C runtime 介绍 使用 runtime Objective c 使用系统的 runt...

  • Runtime全面剖析之原理篇

    如果想了解Runtime的实际应用请看Runtime全面剖析之简单使用 一:Runtime简介二: Runtime...

  • Runtime

    Runtime的使用 .h .m #import

  • Runtime知识梳理

    补一下:runtime使用DEMO 以前对runtime的使用和了解都很模糊。这段时间,把runtime机制好好学...

  • iOS Runtime 使用

    使用runtime 首先需要导入#import runtime拷贝 objc_s...

  • 谈Runtime机制和使用的整体化梳理

    谈Runtime机制和使用的整体化梳理 谈Runtime机制和使用的整体化梳理

  • iOS 从runtime理解消息发送

    什么是runtime runtime就是运行时,在实际开发中使用runtime的场景并不多,但是了解runtime...

网友评论

      本文标题:runtime的使用

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