iOS开发——高级技术OC篇&运行时(Runtime)机制
运行时(Runtime)机制
官方介绍:


这里我们主要关注的是最后一种!
下面来看看Runtime的相关总结

#pragma mark 获取属性成员
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 unsigned int count = 0;
2
3 Ivar *ivars = class_copyIvarList([iCocosObject class], &count);
4
5 // Ivar *ivars = class_copyMethodList(<#__unsafe_unretained Class cls#>, <#unsigned int *outCount#>)
6
7 // Ivar *ivars = class_copyPropertyList(<#__unsafe_unretained Class cls#>, <#unsigned int *outCount#>);
8
9 // Ivar *ivars = class_copyProtocolList(<#__unsafe_unretained Class cls#>, <#unsigned int *outCount#>)
10
11
12
13 for (int i = 0; i < count; i++) {
14
15 Ivar ivar = ivars[i];
16
17
18
19 NSString *name = @(ivar_getName(ivar));
20
21 NSLog(@"%@", name);
22
23
24
25 NSLog(@"*****************");
26
27 const char *iv = ivar_getName(ivar);
28
29
30
31
32
33 NSLog(@"%s", iv);
34
35
36
37 NSLog(@"*****************");
38
39 const char *ivs = ivar_getTypeEncoding(ivar);
40
41
42
43 NSLog(@"%s", ivs);
44
45 }

#pragma mark 获取方法
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 unsigned int meth = 0;
2
3 Method *met = class_copyMethodList([iCocosObject class], &meth);
4
5 for (int i = 0; i < meth; i++) {
6
7 Method m = met[i];
8
9
10
11 SEL sel = method_getName(m);
12
13 NSString *str = NSStringFromSelector(sel);
14
15
16
17 NSLog(@"%@",str);
18
19 }
20
21

#pragma mark 获取协议
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 unsigned int pro = 0;
2
3 Protocol * __unsafe_unretained *proto = class_copyProtocolList([iCocosObject class], &pro);
4
5 for (int i = 0; i < pro; i++) {
6
7 Method p = (__bridge Method)(proto[i]);
8
9
10
11 const char *pr = protocol_getName((__bridge Protocol *)(p));
12
13 // NSString *str = NSStringFromSelector(pr);
14
15
16
17 NSLog(@"%s",pr);
18
19 }
20
21

#pragma mark 获取属性
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 unsigned int xs = 0;
2
3 objc_property_t *xsL = class_copyPropertyList([iCocosObject class], &xs);
4
5 for (int i = 0; i < xs; i++) {
6
7 objc_property_t xslist = xsL[i];
8
9
10
11 const char *x = property_getName(xslist);
12
13 // NSString *str = NSStringFromSelector(x);
14
15
16
17 NSLog(@"%s",x);
18
19 }
20
21
22
23
24
25 // objc_msgSend()
26
27 // objc_getClass(<#const char *name#>);
28
29 // sel_registerName(<#const char *str#>);
30
31
32
33 // iCocosView *view = objc_msgSend(objc_msgSend(objc_getClass("iCocosView"), sel_registerName("alloc")), sel_registerName("init"));
34
35
36
37

#pragma mark 实现方法混淆
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 Method one = class_getClassMethod([iCocosObject class], @selector(iCocosMethos)); 2 3 Method two = class_getClassMethod([iCocosObject class], @selector(iCocosMetho)); 4 5 method_exchangeImplementations(one, two); 6 7 8 9 Method o = class_getInstanceMethod([iCocosObject class], @selector(iCocosMethos)); 10 11 Method t = class_getInstanceMethod([iCocosObject class], @selector(iCocosMetho)); 12 13 method_exchangeImplementations(o, t); 14 15 16 17 // class_getInstanceSize(<#__unsafe_unretained Class cls#>); 18 19 // class_getInstanceVariable(<#__unsafe_unretained Class cls#>, <#const char *name#>); 20 21 // class_getMethodImplementation_stret(<#__unsafe_unretained Class cls#>, <#SEL name#>); 22 23 24 25 // class_getClassVariable(<#__unsafe_unretained Class cls#>, <#const char *name#>); 26 27 // class_getSuperclass(<#__unsafe_unretained Class cls#>); 28 29 30 31 // class_getProperty(<#__unsafe_unretained Class cls#>, <#const char *name#>); 32 33 // class_getName(<#__unsafe_unretained Class cls#>); 34 35 36 37 38 39 40 41 // class_replaceMethod(<#__unsafe_unretained Class cls#>, <#SEL name#>, <#IMP imp#>, <#const char *types#>); 42 43

#pragma mark 增加
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 // class_addIvar(<#__unsafe_unretained Class cls#>, <#const char *name#>, <#size_t size#>, <#uint8_t alignment#>, <#const char *types#>); 2 3 // class_addMethod(<#__unsafe_unretained Class cls#>, <#SEL name#>, <#IMP imp#>, <#const char *types#>); 4 5 // class_addProperty(<#__unsafe_unretained Class cls#>, <#const char *name#>, <#const objc_property_attribute_t *attributes#>, <#unsigned int attributeCount#>); 6 7 // class_addProtocol(<#__unsafe_unretained Class cls#>, <#Protocol *protocol#>); 8 9

#pragma mark 替换系统的addObject:(给数组或者其他类型做分类)
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

1 //在load中实现下面的代码
2
3 Method ic = class_getInstanceMethod(NSClassFromString(@"_NSArrayM"), @selector(iCocosobject:));
4
5 Method add = class_getInstanceMethod(NSClassFromString(@"_NSArrayM"), @selector(addObject:));
6
7 method_exchangeImplementations(ic, add);
8
9
10
11
12
13 //实现iCocosobject方法:(实现相应的功能,这里只是去掉非空)
14
15 // if (object != nil) {
16
17 // [self iCocosobject:object];
18
19 // }
20
21



#pragma mark 消息机制
/******************************************************************************
* *
* Inquiry macros *
* *
* iCocos--Description *
* *
******************************************************************************/

objc_msgSend(); // objc_getClass(<#const char *name#>); // objc_getMetaClass(<#const char *name#>); // objc_getClassList(<#__unsafe_unretained Class *buffer#>, <#int bufferCount#>); // objc_getProtocol(<#const char *name#>); // object_getIvar(<#id obj#>, <#Ivar ivar#>); // objc_getRequiredClass(<#const char *name#>); // objc_getAssociatedObject(<#id object#>, <#const void *key#>);//关联对象 } @end

来看看我们平时使用OC编写的代码转成C++之后是什么样的

创建一个分类实现任何对象都可以使用方法混淆

1
2
3 @implementation NSObject(Extension)
4
5
6
7 /**
8
9 * 给NSObject添加一个分类
10
11 */
12
13
14
15 +(void)swizzleClassMethod:(Class)class originalSelector:(SEL)originSelector otherSelector:(SEL)otherSelector
16
17 {
18
19 Method other = class_getClassMethod(class, otherSelector);
20
21 Method origin = class_getClassMethod(class, originSelector);
22
23 method_exchangeImplementations(other, origin);
24
25 }
26
27
28
29 +(void)swizzleInstanceMethod:(Class)class originalSelector:(SEL)originSelector otherSelector:(SEL)otherSelector
30
31 {
32
33 Method other = class_getInstanceMethod(class, otherSelector);
34
35 Method origin = class_getInstanceMethod(class, originSelector);
36
37 method_exchangeImplementations(other, origin);
38
39 }
40
41 @end


应用实例--------------------------------------------------
一:关联对象:给某一个类在运行的时候动态的增加一个成员变量

1 @interface NSObject(iCocos)
2
3
4
5 //头文件中声明一个属性
6
7 @property (nonatomic, assign) double height;
8
9
10
11 @end
12
13
14
15
16
17 @implementation NSObject(iCocos)
18
19
20
21 static double heightKey;//用来参考
22
23
24
25 -(void)setHeight:(double)height
26
27 {
28
29 objc_setAssociatedObject(self, &heightKey, @(height), OBJC_ASSOCIATION_ASSIGN);
30
31 }
32
33
34
35 -(double)height
36
37 {
38
39 return [objc_getAssociatedObject(self, &heightKey) doubleValue];
40
41 }
42
43
44
45 @end
46
47

二:归档

三:字典转模型:
之前使用的方法;

使用运行时
注意必须保证字典中的属性名和模型中的属性名一模一样

完善代码:

1 @implementation NSObject (Model)
2
3
4
5 + (instancetype)objcWithDict:(NSDictionary *)dict mapDict:(NSDictionary *)mapDict
6
7 {
8
9
10
11
12
13 id objc = [[self alloc] init];
14
15
16
17 unsigned int count = 0;
18
19 Ivar *ivars = class_copyIvarList(self, &count);
20
21
22
23 for (int i = 0; i < count; i++) {
24
25 Ivar ivar = ivars[i];
26
27
28
29 NSString *name = @(ivar_getName(ivar));
30
31
32
33 name = [name substringFromIndex:1];
34
35
36
37 id value = dict[name];
38
39
40
41 if (value == nil) {
42
43
44
45 if (mapDict) {
46
47 NSString *mapName = mapDict[name];
48
49
50
51 value = dict[mapName];
52
53 }
54
55
56
57 }
58
59
60
61 [objc setValue:value forKeyPath:name];
62
63 }
64
65
66
67
68
69 return objc;
70
71 }
72
73
74
75 @end

四:封装框架:MJExtension
iOS开发——高级技术OC篇&运行时(Runtime)机制的更多相关文章
- iOS开发——高级UI—OC篇&退出键盘
退出键盘 iOS开发中键盘的退出方法用很多中我们应该在合适的地方使用合适的方法才能更好的提高开发的效率和应用的性能 下面给大家介绍几种最常用的键盘退出方法,基本上iOS开发中的键盘退出方法都是这几种中 ...
- iOS开发——使用技术OC篇&简单九宫格锁屏功能的实现与封装
简单九宫格锁屏功能的实现与封装 首先来看看最后的实现界面. 在这开始看下面的内容之前希望你能先大概思考活着回顾一下如果 你会怎么做,只要知道大概的思路就可以. 由于iphone5指纹解锁的实现是的这个 ...
- iOS开发——高级技术精选OC篇&Runtime之字典转模型实战
Runtime之字典转模型实战 如果您还不知道什么是runtime,那么请先看看这几篇文章: http://www.cnblogs.com/iCocos/p/4734687.html http://w ...
- iOS开发——运行时OC篇&使用运行时获取系统的属性:使用自己的手势修改系统自带的手势
使用运行时获取系统的属性:使用自己的手势修改系统自带的手势 有的时候我需要实现一个功能,但是没有想到很好的方法或者想到了方法只是那个方法实现起来太麻烦,一或者确实为了装逼,我们就会想到iOS开发中最牛 ...
- iOS开发——底层OC篇&运行时常用
运行时常用 什么是Runtime(前面的文章已经说的很清楚了,这里就简单的介绍一下) 我们写的代码在程序运行过程中都会被转化成runtime的C代码执行,例如[target doSomething]; ...
- ios开发——实用技术篇OC篇&iOS的主要框架
iOS的主要框架 阅读目录 Foundation框架为所有的应用程序提供基本系统服务 UIKit框架提供创建基于触摸用户界面的类 Core Data框架管着理应用程序数据模型 Core ...
- iOS开发——网络实用技术OC篇&网络爬虫-使用青花瓷抓取网络数据
网络爬虫-使用青花瓷抓取网络数据 由于最近在研究网络爬虫相关技术,刚好看到一篇的的搬了过来! 望谅解..... 写本文的契机主要是前段时间有次用青花瓷抓包有一步忘了,在网上查了半天也没找到写的完整的教 ...
- iOS开发——网络实用技术OC篇&网络爬虫-使用java语言抓取网络数据
网络爬虫-使用java语言抓取网络数据 前提:熟悉java语法(能看懂就行) 准备阶段:从网页中获取html代码 实战阶段:将对应的html代码使用java语言解析出来,最后保存到plist文件 上一 ...
- iOS开发——新特性OC篇&IOS9 SDK新特性
iOS9 SDK新特性 WWDC 2015苹果开发者大会是移动开发者一年一度的盛会,InfoQ中文站除了第一时间整理Keynote内容分享给大家之外,还邀请了资深的一线开发者分享他们的收获.本文为王巍 ...
随机推荐
- spring事物传播机制与隔离级别
转载自:http://www.blogjava.net/freeman1984/archive/2010/04/28/319595.html7个传播行为,4个隔离级别, Spring事务的传播行为和隔 ...
- Apache连接PHP后无法启动问题解决思路
问题:apache之前正常,连接配置完PHP后无法启动,用apache Test Configration测试后报错形式为: Cannot load D:/php/php5apache2_2.dll ...
- 我看见的第一个XCODE编译错误 - Command /applications.../clang failed with exit code 1
开始用XCODE学习Apple相关开发的东东,写些demo熟悉Object C,一直还没看见什么问题,昨晚在家把一些demo上传到代码服务器,今天在另外一台机器上下载下来编译,出现了问题: Preco ...
- smartupload 上传与下载(转载)
前台: <form action="uploadimage.jsp" method="post" enctype="multipart/form ...
- java.lang.OutOfMemoryError: Java heap space解决方法
引起java.lang.OutOfMemoryError: Java heap space异常,可能是由JAVA的堆栈设置太小的原因 根据网上的答案大致有以下两种解决方法: 1.在D:/apache- ...
- iOS 资源大全
这是个精心编排的列表,它包含了优秀的 iOS 框架.库.教程.XCode 插件.组件等等. 这个列表分为以下几个部分:框架( Frameworks ).组件( Components ).测试( Tes ...
- 避开WebForm天坑,拥抱ASP.Net MVC吧
有鹏友在如鹏网的QQ群中提了一个问题: 请问,在ASP.Net中如何隐藏一个MenuItem,我想根据不同的权限,对功能菜单进行隐藏,用style不行. 如果要仅仅解答这个问题,很好解答,答案很简单: ...
- Building Apps for Windows Phone 8.1教程下载地址整理
官方教程地址http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-1http://media.ch9.ms/ch9/8db ...
- [.NET领域驱动设计实战系列]专题三:前期准备之规约模式(Specification Pattern)
一.前言 在专题二中已经应用DDD和SOA的思想简单构建了一个网上书店的网站,接下来的专题中将会对该网站补充更多的DDD的内容.本专题作为一个准备专题,因为在后面一个专题中将会网上书店中的仓储实现引入 ...
- 终于解决:升级至.NET 4.6.1后VS2015生成WCF客户端代理类的问题
在Visual Studio 2015中将一个包含WCF引用的项目的targetFramework从4.5改为4.6.1的时候,VS2015会重新生成WCF客户端代理类.如果WCF引用配置中选中了&q ...