- 浏览: 326709 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
arlenliugj:
才发现这贴子好早
如何在Ubuntu下安装windows7 -
arlenliugj:
请问一下,这样安装上windows会不会把已经装好的linux ...
如何在Ubuntu下安装windows7 -
zhaomengbin:
写的很不错,可以写个文件给合并的方法么?,将分割后的几份文件还 ...
文件分割程序 -
junhe0723:
3Q,刚出现这个问题解决了。
jvm terminated exit code 1 -
Anddy:
shell 双击选中太不智能了。
XSHELL快捷键设置
objective-c有两个版本的runtime,“modern” 和 “legacy”,objective-c 2.0,iphone的应用和64位的OS X 10.5及以后的版本都使用的是modern版本的。
runtime系统是一个动态共享库,开放的接口都定义在/usr/include/objc.h文件中
objc_msgSend 方法:
在objective-c中,方法会在runtime的时候才进行绑定,而不是在编译阶段,编译器会在编译阶段,把方法编译成:[receiver message],然后再通过objc_msgSend(receiver, selector)来实现方法动态绑定,如果有参数,那么调用为objc_msgSend(receiver, selector, arg1, arg2, ...)
没一个类结构都包括两个比不可少的元素,指向父类的指针和类表,类表包含类的方法名、地址。一个类创建,内存会分配空间给类,然后初始化变量,其中isa变量是指向类结构的指针。继承自NSObject 或者 NSProxy的类都会有isa指针,一个NSObject对象内容和objc_object结构体内容相同。
objc_msgSend 绑定方法,isa指针先会去类的类表中寻找方法名和地址,如果没找到,就去父类的类表中寻找,直到NSObject类的类表。一个方法就这样的被动态的绑定给消息。为了加速绑定过程,runtime系统会cache常用方法。
objc_msgSend传入的两个参数,会返回self和_cmd
- strange {
id target = getTheReceiver();
SEL method = getTheMethod();
if ( target == self || method == _cmd )
return nil;
return [target performSelector:method];
}
一个类定义一个方法,可以通过类指针methodForSelector:去指定方法的实现。methodForSelector是runtime的实现,不是OC的特性
void (*setter)(id, SEL, BOOL);
int i;
setter = (void (*)(id, SEL, BOOL))[target
methodForSelector:@selector(setFilled:)];
for ( i = 0 ; i < 1000 ; i++ )
setter(targetList[i], @selector(setFilled:), YES);
可以通过定义@dynamic,手动实现getter和setter方法,还可以通过resolveInstanceMethod:和 resolveClassMethod:来动态绑定对象方法和类方法。
void dynamicMethodIMP(id self, SEL _cmd) {
// implementation ....
}
@implementation MyClass
+ (BOOL)resolveInstanceMethod:(SEL)aSEL
{
if (aSEL == @selector(resolveThisMethodDynamically)) {
class_addMethod([self class], aSEL, (IMP) dynamicMethodIMP, "v@:");
return YES;
}
return [super resolveInstanceMethod:aSEL];
}
@end
通过resolveInstanceMethod函数,来实现方法的转移。如果respondsToSelector: or instancesRespondToSelector:方法调用了,那么self会先去调用他们给定的方法。
一个OC的程序在running状态,可以加载新的类和类别,新的代码会加载到正在running的程序。动态加载可以做很多事情,比如不同的系统模块是被动态加载的。
虽然在objc/objc-load.h文件中定义了objc_loadModules动态加载模块,但是NSBundle类提供更方便的加载,详见NSBundle class reference
消息转移:
发送一个消息给对象,如果对象没有处理消息,那么会报错,但在报错之前,runtime系统会给对象第二次机会去处理消息。这个机会就是发送带有所有消息特征的NSInvocation对象参数,通过forwardInvocation:方法。 我们可以通过forwardInvocation方法来实现消息第一次没有处理的默认响应。
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
if ([someOtherObject respondsToSelector:
[anInvocation selector]])
[anInvocation invokeWithTarget:someOtherObject];
else
}
[super forwardInvocation:anInvocation];
forwardInvocation可以做的事情很多,可以让所有消息响应一个方法,或者不响应,或者实现对象属性方法的懒加载(初始化一个复杂对象,很多属性会在调用的时候初始化)等等,这个方法只有调用一个不存在的方法才会执行。可以通过查看NSInvocation class reference来查看。
if ( [aWarrior respondsToSelector:@selector(negotiate)] )
{
//the answer is NO, even though it can receive negotiate messages without error and respond to them, in a sense, by forwarding them to a Diplomat.
}
- (BOOL)respondsToSelector:(SEL)aSelector
{
if ( [super respondsToSelector:aSelector] )
return YES;
else {
/* Here, test whether the aSelector message can *
* be forwarded to another object and whether that *
* object can respond to it. Return YES if it can. */
}
return NO; }
声明变量:
@interface Lender : NSObject {
float alone;
}
@property float alone;
@end
获取变量list
id LenderClass = objc_getClass("Lender");
unsigned int outCount;
objc_property_t *properties = class_copyPropertyList(LenderClass, &outCount);
获取变量名称
const char *property_getName(objc_property_t property)
给定变量名称,获得其引用
objc_property_t class_getProperty(Class cls, const char *name)
objc_property_t protocol_getProperty(Protocol *proto, const char *name, BOOL
isRequiredProperty, BOOL isInstanceProperty)
获取变量name和值(值是encode过的)
const char *property_getAttributes(objc_property_t property)
打印所有的属性:
id LenderClass = objc_getClass("Lender");
unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList(LenderClass, &outCount);
for (i = 0; i < outCount; i++) {
objc_property_t property = properties[i];
fprintf(stdout, "%s %s\n", property_getName(property),
property_getAttributes(property));
}
runtime系统是一个动态共享库,开放的接口都定义在/usr/include/objc.h文件中
objc_msgSend 方法:
在objective-c中,方法会在runtime的时候才进行绑定,而不是在编译阶段,编译器会在编译阶段,把方法编译成:[receiver message],然后再通过objc_msgSend(receiver, selector)来实现方法动态绑定,如果有参数,那么调用为objc_msgSend(receiver, selector, arg1, arg2, ...)
没一个类结构都包括两个比不可少的元素,指向父类的指针和类表,类表包含类的方法名、地址。一个类创建,内存会分配空间给类,然后初始化变量,其中isa变量是指向类结构的指针。继承自NSObject 或者 NSProxy的类都会有isa指针,一个NSObject对象内容和objc_object结构体内容相同。
objc_msgSend 绑定方法,isa指针先会去类的类表中寻找方法名和地址,如果没找到,就去父类的类表中寻找,直到NSObject类的类表。一个方法就这样的被动态的绑定给消息。为了加速绑定过程,runtime系统会cache常用方法。
objc_msgSend传入的两个参数,会返回self和_cmd
- strange {
id target = getTheReceiver();
SEL method = getTheMethod();
if ( target == self || method == _cmd )
return nil;
return [target performSelector:method];
}
一个类定义一个方法,可以通过类指针methodForSelector:去指定方法的实现。methodForSelector是runtime的实现,不是OC的特性
void (*setter)(id, SEL, BOOL);
int i;
setter = (void (*)(id, SEL, BOOL))[target
methodForSelector:@selector(setFilled:)];
for ( i = 0 ; i < 1000 ; i++ )
setter(targetList[i], @selector(setFilled:), YES);
可以通过定义@dynamic,手动实现getter和setter方法,还可以通过resolveInstanceMethod:和 resolveClassMethod:来动态绑定对象方法和类方法。
void dynamicMethodIMP(id self, SEL _cmd) {
// implementation ....
}
@implementation MyClass
+ (BOOL)resolveInstanceMethod:(SEL)aSEL
{
if (aSEL == @selector(resolveThisMethodDynamically)) {
class_addMethod([self class], aSEL, (IMP) dynamicMethodIMP, "v@:");
return YES;
}
return [super resolveInstanceMethod:aSEL];
}
@end
通过resolveInstanceMethod函数,来实现方法的转移。如果respondsToSelector: or instancesRespondToSelector:方法调用了,那么self会先去调用他们给定的方法。
一个OC的程序在running状态,可以加载新的类和类别,新的代码会加载到正在running的程序。动态加载可以做很多事情,比如不同的系统模块是被动态加载的。
虽然在objc/objc-load.h文件中定义了objc_loadModules动态加载模块,但是NSBundle类提供更方便的加载,详见NSBundle class reference
消息转移:
发送一个消息给对象,如果对象没有处理消息,那么会报错,但在报错之前,runtime系统会给对象第二次机会去处理消息。这个机会就是发送带有所有消息特征的NSInvocation对象参数,通过forwardInvocation:方法。 我们可以通过forwardInvocation方法来实现消息第一次没有处理的默认响应。
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
if ([someOtherObject respondsToSelector:
[anInvocation selector]])
[anInvocation invokeWithTarget:someOtherObject];
else
}
[super forwardInvocation:anInvocation];
forwardInvocation可以做的事情很多,可以让所有消息响应一个方法,或者不响应,或者实现对象属性方法的懒加载(初始化一个复杂对象,很多属性会在调用的时候初始化)等等,这个方法只有调用一个不存在的方法才会执行。可以通过查看NSInvocation class reference来查看。
if ( [aWarrior respondsToSelector:@selector(negotiate)] )
{
//the answer is NO, even though it can receive negotiate messages without error and respond to them, in a sense, by forwarding them to a Diplomat.
}
- (BOOL)respondsToSelector:(SEL)aSelector
{
if ( [super respondsToSelector:aSelector] )
return YES;
else {
/* Here, test whether the aSelector message can *
* be forwarded to another object and whether that *
* object can respond to it. Return YES if it can. */
}
return NO; }
声明变量:
@interface Lender : NSObject {
float alone;
}
@property float alone;
@end
获取变量list
id LenderClass = objc_getClass("Lender");
unsigned int outCount;
objc_property_t *properties = class_copyPropertyList(LenderClass, &outCount);
获取变量名称
const char *property_getName(objc_property_t property)
给定变量名称,获得其引用
objc_property_t class_getProperty(Class cls, const char *name)
objc_property_t protocol_getProperty(Protocol *proto, const char *name, BOOL
isRequiredProperty, BOOL isInstanceProperty)
获取变量name和值(值是encode过的)
const char *property_getAttributes(objc_property_t property)
打印所有的属性:
id LenderClass = objc_getClass("Lender");
unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList(LenderClass, &outCount);
for (i = 0; i < outCount; i++) {
objc_property_t property = properties[i];
fprintf(stdout, "%s %s\n", property_getName(property),
property_getAttributes(property));
}
发表评论
-
URL System Programming Guide
2014-11-11 09:44 1215支持五种协议:ftp:// http:// ... -
OpenGL Programming Guide
2013-04-16 10:10 0XXXXXX -
Location Awareness Programming Guide
2013-04-14 12:19 0两个核心的framework: Cor ... -
Audio Session Programming Guide
2013-04-11 20:32 2882Audio Session:自己开发的应用和IOS应用程序处理 ... -
Event programming guide
2013-04-09 19:02 2117Phone中处理触摸屏的操作,在3.2之前是主要使用的是由UI ... -
Instruments User Guide
2013-04-02 19:32 0打开Instruments方式: 1:Xcode > O ... -
CFNetwork Programming Guide
2013-04-01 20:40 4249CFNetwork封装了具体的网路实现,可以通过CFxxx等a ... -
bundle programing guide
2013-03-31 10:50 3401CF 意思是Core Foundation bundle在i ... -
Core Data Tutorial
2013-03-20 15:20 1546core data支持IOS 3以后的系统。 Core Dat ... -
ios 国际化
2013-03-19 16:25 0需要你本身的应用支持国际化,主要是project->in ... -
view controller program guide
2013-03-13 13:22 0navigation controller A view c ... -
ad hoc证书
2013-02-28 23:22 1643iOS证书分2种,1种是开发证书,用来给你(开发人员)做真机测 ... -
iOS App Programming Guide
2013-03-13 11:24 2711用户界面的选择: 1:堆积方式:sdk提供的控件,你一个一个往 ... -
使用vpn在mac
2013-02-25 19:25 0http://blog.sina.com.cn/s/blog_ ... -
为APNS制作和生成证书
2013-02-25 17:32 0首先制作一个证书申请文件(.csr)文件,然后创建一个appi ... -
安装苹果的ipa文件到iphone
2013-02-22 17:29 3325苹果的ipa文件安装方式有好多种,我介绍的是最常用的安装ipa ... -
About the Tools Workflow for iOS
2013-02-26 21:51 2143查看自己的开发角色是agent、admin、member。 只 ... -
基本概念
2013-02-21 22:27 0ios开发准备流程:http://hi.baidu.com/s ... -
About the iOS Technologies(关于 iOS 技术简介)
2013-02-21 14:30 978官方文档:https://developer.apple.co ... -
Doxygen for Xcode
2013-02-21 10:53 1879IOS Developer Library 中的article ...
相关推荐
《Objective-C 2.0 Runtime Programming Guide》是Apple公司为开发者提供的一份详尽的技术文档,专注于Objective-C 2.0运行时编程的深入解析。这份文档不仅对Objective-C语言的核心概念进行了阐述,还深入探讨了运行...
### Objective-C Runtime编程指南知识点概览 #### 一、Objective-C Runtime系统介绍 Objective-C语言设计上尽可能地将决策从编译时和链接时推迟到运行时,这意味着它不仅仅依赖于编译器,还需要一个运行时系统来...
Objective-C 语言将决定尽可能的从编译和链接时推迟到运行时。只要有可能,Objective-C 总是使用动态 的方式来解决问题。这意味着 Objective-C 语言不仅需要一个编译器,同时也需要一个运行时系统来执行 编译好的...
CUDA运行时(CUDA Runtime)是CUDA编程的一个重要组成部分,它提供了丰富的API来管理GPU设备和内存,执行核函数,以及处理数据传输等任务。其主要内容包括: 1. 初始化(Initialization):在使用GPU设备之前,需要...
Programming with OpenCL C and the runtime API Using buffers, sub-buffers, images, samplers, and events Sharing and synchronizing data with OpenGL and Microsoft’s Direct3D Simplifying development ...
编程模型章节(Chapter 2)主要介绍了CUDA中的核心概念,包括内核(Kernels)、线程层次结构(Thread Hierarchy)、内存层次结构(Memory Hierarchy)和异构编程(Heterogeneous Programming)。内核是CUDA中的基本...
### BREW编程指南知识点概述 ...以上是对给定文件“BREW Programming Guide”中提及的主要知识点的详细总结。这些知识点对于理解和掌握BREW编程技术至关重要,可以帮助开发者更高效地开发出高质量的应用程序。
Swift是一种由苹果公司开发的现代、安全、高性能的编程语言,设计用于iOS、macOS、watchOS和tvOS等Apple...同时,阅读Apple官方的《Objective-C Runtime Programming Guide》和《Swift Language Guide》会有很大帮助。
这个“BREW Programming Guide 海信”文档和配套代码,为初学者提供了深入理解BREW平台和进行实际编程的宝贵资源。 首先,我们来看标题中的核心——“BREW Programming Guide”。这份指南通常会涵盖以下几个关键...
- **定义**: BREW (Binary Runtime Environment for Wireless) 是一种无线设备应用开发标准环境,由Qualcomm(高通)公司开发。 - **应用场景**: 广泛应用于CDMA手机平台,使开发者能够为支持BREW平台的手机开发各类...
9. CUDA运行时(CUDA Runtime):CUDA运行时提供了丰富的API,用于初始化设备、管理设备内存、执行内核、处理异步并发执行等。 10. 异步并发执行:CUDA支持CPU和GPU间的异步并发执行,允许CPU和GPU几乎同时工作,...
在这一章节中,读者将了解到BREW(Binary Runtime Environment for Wireless)的基础概念。BREW是一种由高通公司开发的移动设备应用程序平台,主要应用于CDMA网络的手机上。BREW提供了强大的开发环境,允许开发者...
Objective-C Programming: The Big Nerd Ranch Guide (2nd Edition).epub (epub 格式) Want to write iOS apps or desktop Mac applications? This introduction to programming and the Objective-C language is ...