美文网首页
简单理解runtime

简单理解runtime

作者: 远处那片海 | 来源:发表于2016-08-26 15:52 被阅读45次
  1. runtime是一套底层的C语言API,包含很多强大实用的C语言数据类型、C语言函数
  2. 平时我们编写的代码,底层都是基于runtime实现的
runtime可以达到什么目的?
  • 能动态产生、修改、删除一个类、成员变量、方法
runtime可以用在哪些地方

类别添加属性
Jason转Model
Method Swizzling
hack

具体使用如下:
自定义一个类mySelvesLife

#import <Foundation/Foundation.h>

@interface mySelvesLife : NSObject

@property (nonatomic, assign) NSInteger age;
@property (nonatomic, copy  ) NSString  *name;
@property (nonatomic, assign) float     height;

- (void)eat;

- (void)drink;

@end

自定义类的实现部分

#import "mySelvesLife.h"

#import <objc/runtime.h>

@implementation mySelvesLife

+(void)load {
//获取一个类的指定成员方法
    Method eatMethod = class_getInstanceMethod(self, @selector(eat));
    Method drinkMethod = class_getInstanceMethod(self, @selector(drink));
//交换两个方法的实现
    method_exchangeImplementations(eatMethod, drinkMethod);
}

- (void)eat {
    NSLog(@"eat");
}

- (void)drink {
    NSLog(@"drink");
}

@end

runtime的具体使用

#import "ViewController.h"

//成员变量、类、方法
#import <objc/runtime.h>

#import "mySelvesLife.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
//    [self ivars];
    
//    [self methods];
    
    [self exchangeMethod];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)ivars {
    unsigned int count = 0;
    //获取一个类的所有成员属性
    Ivar *ivars = class_copyIvarList([mySelvesLife class], &count);
    for (int i = 0; i < count; i++) {
        Ivar ivar = ivars[i];
        //获取属性名
        const char *name = ivar_getName(ivar);
        //获取属性类型
        const char *class = ivar_getTypeEncoding(ivar);
        NSLog(@"ivarName:%s,ivarType:%s",name,class);
    }
    
    //释放ivars:C语言在ARC中通过copy产生,需要手动释放
    free(ivars);
}

- (void)methods {
    unsigned int count = 0;
    //获取一个类的所有方法
    Method *methods = class_copyMethodList([mySelvesLife class], &count);
    for (int i = 0; i < count; i++) {
        Method method = methods[i];
        SEL sel = method_getName(method);
        NSLog(@"sel:%@",NSStringFromSelector(sel));
    }
    
    free(methods);
}

- (void)exchangeMethod {
    mySelvesLife *myself = [[mySelvesLife alloc] init];
    [myself eat];
}

@end

#import <objc/runtime.h>中有很多C语言函数,我们可以慢慢探索,另外还有一个类#import <objc/message.h>是消息机制,有兴趣可以看看。
其中,

打印出来的.cxx_destruct方法作用是ARC下对象的成员变量在编译器的. cxx_destruct方法自动释放,具体内容看这里

+load是在应用启动的时候就会调用,而initialize是在实例化该类的时候才会调用。交换方法不是必须写在这里。

initialize方法和init区别

在程序运行过程中,他会在程序中每个类调用一次initialize。这个调用的时间发生在你的类接收到消息之前,但是在它的父类接收到initialize之后。具体看这里

相关文章

  • 简单理解runtime

    runtime是一套底层的C语言API,包含很多强大实用的C语言数据类型、C语言函数 平时我们编写的代码,底层都是...

  • 简单理解runtime

    runtime简称运行时机制,其中最主要的是消息机制,也是oc的一大特点。 对于c语言而言,在编译的时候就会去决定...

  • runtime的简单理解

    原文链接:http://blog.csdn.net/mumubumaopao/article/details/51...

  • iOS Runtime简单理解

    简介 Runtime 又叫运行时,是一套底层的 C 语言 API,其为 iOS 内部的核心之一,我们平时编写的 O...

  • iOS runtime笔记一

    参考资料 南峰子的runtime 一【OC刨根问底】Runtime简单粗暴理解 对象的理解,元类(meta cla...

  • objective-C之runtime第一篇

    网上查看了一些runtime的资料, 关于runtime是什么?这里想用自己的理解,简单点说:runtime是一套...

  • Runtime基础运用实践和总结

    runtime的理解 今天同学问我什么是runtime,我想了想就简单总结出了这篇文章,以下仅供参考. 我所理解的...

  • Runtime 简单理解及使用

    什么是runtime? runtime 是 OC底层的一套C语言的API(引入或),编译器最终都会将OC代码转化为...

  • runtime简单粗暴的理解

    关于runtime是什么,我这边不做过多解释,百度上一大堆。但是,看看概念,很多人都难以真正理解和使用好r...

  • RunTime理解与实战(二)

    上一篇我们已经对OC的Runtime做了简单的介绍,了解的其原理和API的使用RunTime理解与实战(一),这篇...

网友评论

      本文标题:简单理解runtime

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