iOS Type Encodings

本文深入解析了Objective-C运行时(runtime)中如何通过class_addMethod动态为类添加方法,并详细解释了TypeEncodings参数的意义,包括默认参数self和_cmd的作用及各种类型编码的含义。
摘要由CSDN通过智能技术生成


使用runtime动态给一个对象添加方法的时候我们会发现有个参数不是很理解 :那就是第四个 Type Encodings 

 class_addMethod([self class],sel, (IMP)eat,"v@:");


添加方法

 class_addMethod([self class],sel, (IMP)eat,"v#:");



后来查文档才知道是方法的 返回值、参数 类型 

可如果仅仅这么理解那么就不全面。

通过Clang生成的C++代码查看得知,底层是通过objc_msgSend...函数调用,会默认有两个参数,一个是当前实例对象self 一个是方法_cmd

static void _I_DemoClass_TestFunction(DemoClass * self, SEL _cmd) {
     DemoClass * obj = objc_msgSend(objc_msgSend(objc_getClass( "TestClass" ), sel_registerName( "alloc" )), sel_registerName( "init" ));
}
这样我们就不难理解了为什么通过runtime动态给一个类添加方法的时候 Type Encodings 会多了两个默认的参数self、_cmd


下面是一张type encodings对应表

Table 6-1  Objective-C type encodings

Code

Meaning

c

char

i

An int

s

short

l

long

l is treated as a 32-bit quantity on 64-bit programs.

q

long long

C

An unsigned char

I

An unsigned int

S

An unsigned short

L

An unsigned long

Q

An unsigned long long

f

float

d

double

B

A C++ bool or a C99 _Bool

v

void

*

A character string (char *)

@

An object (whether statically typed or typed id)

#

A class object (Class)

:

A method selector (SEL)

[array type

An array

{name=type...}

A structure

(name=type...)

A union

bnum

A bit field of num bits

^type

A pointer to type

?

An unknown type (among other things, this code is used for function pointers)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值