- 浏览: 141951 次
- 性别:
- 来自: 北京
文章分类
最新评论
respondsToSelector该方法询问对象以确定其是否能够响应某个特定的消息
除了检查对象是否支持一个特定的方法,我们还可以检查类是否会创建支持一个特定的方法的对象。未来做到这一点,我们使用instancesRespondToSelector()方法
举例:
输出结果:
c1 has a print method.
Class1 object have a print method
除了检查对象是否支持一个特定的方法,我们还可以检查类是否会创建支持一个特定的方法的对象。未来做到这一点,我们使用instancesRespondToSelector()方法
举例:
#import <Foundation/Foundation.h> #import <stdio.h> @interface Class1 : NSObject { } -(void)print; @end @implementation Class1 -(void)print { printf("This is Class 1./n"); } @end int main (int argc, const char * argv[]) { Class1 *c1=[Class1 new]; //验证对象支持一个方法 if ([c1 respondsToSelector: @selector(print)]==YES) { printf("c1 has a print method. /n"); } //验证类是否创建支持一个特定方法的对象 if ([Class1 instancesRespondToSelector: @selector(print)]==YES) { printf("Class1 object have a print method /n/n"); } return 0; }
输出结果:
c1 has a print method.
Class1 object have a print method
发表评论
-
Foundation和UIKit框架组织图
2013-01-28 08:58 6185... -
[转]linux常用命令
2013-01-26 22:33 892本文来自于http://blog.csdn.net/totog ... -
[转] NSString 控件消息
2013-01-19 15:52 1060【转】http://www.tongwenguan.com/o ... -
关闭arc
2013-01-17 22:35 04.2前的xcode中,打开“Build Setting”,找 ... -
地址薄源码分析
2013-01-17 10:13 1640ContactViewController.h 头文件 #im ... -
iOS main函数 机器码
2013-01-17 07:24 2497main 启动对应机器码分析 0x2730: pushl ... -
歌曲源码剪切分析
2013-01-16 17:19 7579mian.m 以及appdelegate就不说了,主要说说C控 ... -
[转]深入理解Objective-c中@class的含义
2013-01-16 07:16 1040[转]http://blog.prosight.me/i ... -
UIImageView【转】
2013-01-16 07:17 5464【转】http://my.oschina.net/plumso ... -
isKindOfClass<> isMemberOfClass[转]
2013-01-15 10:27 0转http://blog.csdn.net/totogo201 ... -
NSString 截取,文件读取【转】
2013-01-16 07:18 1529【转】http://www.cnblogs.com/csj00 ... -
loadNibNamed
2013-01-15 10:05 0动态加载,就是在程序运行当中,根据需要动态地加载一些视图,常常 ... -
initWithFrame<>initWithCoder
2013-01-15 09:19 1765initWithFrame 和 initWithCode ... -
协议protocol
2013-01-16 07:17 1086自定义协议语法如下: @protocol 协议名称 方法之声明 ... -
addSubview<>insertSubView
2013-01-15 08:35 3559addSubview是一层一层往上加,新加的只能放到父视图的最 ... -
UIViewController生命周期[转]
2013-01-15 00:09 974转http://www.cnblogs.com/smileEv ... -
IBOutlet IBaction 详解
2013-01-14 23:33 4372IBOutlet对于编译器而言只是一个标记,也就是 ... -
AppDelegate.m 介绍
2013-01-14 22:59 6617【转】[url] www.cnblogs.com/xunzi ... -
didReceiveMemoryWarning
2013-01-14 21:52 5594[转]http://blog.csdn.net/yy404 ... -
OC-plist xib pch StoryBoard
2013-01-14 21:12 1231plist plist文件是什么呢? 它全名是: ...
相关推荐
本示例“ios demo,performSelector和respondsToSelector”着重探讨了两个关键的编程概念:`performSelector`和`respondsToSelector`,它们是Objective-C运行时系统的重要组成部分,特别适用于动态添加方法和处理多...
1、二者的作用相同:都是判断某个类是否实现了某...@2 类 + respondsToSelector + 类方法 yes = 类是否实现了某类方法 @3 实例 respondsToSelector 实例方法 yes = 类是否实现了某实例方法 且@1和@3的作用相同
5. **验证代理是否遵守协议**:在调用代理方法前,可以使用 `conformsToProtocol:` 或 `respondsToSelector:` 检查代理对象是否遵循协议或实现特定方法。例如: ```objc if ([myDelegate conformsToProtocol:@...
if ([self.delegate respondsToSelector:@selector(myObjectWillStartTask:)]) { [self.delegate myObjectWillStartTask:self]; } // 执行任务 if ([self.delegate respondsToSelector:@selector...
if ([self.delegate respondsToSelector:@selector(didSelectRow:andCityZip:)]){ CityItems *item = [_dataArray objectAtIndex:indexPath.row]; [self.delegate didSelectRow:self andCityZip:item.zip]; } ...
- 如果对象的`- (BOOL) respondsToSelector:(SEL)aSelector`返回`NO`,但`- (BOOL) conformsToProtocol:(Protocol *)aProtocol`返回`YES`,表示对象遵循了包含该方法的协议,那么协议方法可以处理消息。 - 对象可以...
if ([self.delegate respondsToSelector:@selector(toolBarDidRequestKeyboardToggle:)]) { [self.delegate toolBarDidRequestKeyboardToggle:self]; } } ``` 至此,我们完成了使用Delegate的基本流程。调用...
if ([self.delegate respondsToSelector:@selector(didFinishTask:)]) { [self.delegate didFinishTask:self]; } } @end ``` 4. **检查协议方法**:在调用代理方法前,我们需要检查代理对象是否实现了对应的方法...
if ([_delegate respondsToSelector:@selector(handleAction:)]) { [_delegate handleAction:info]; } } ``` 这里,`performAction:`方法被调用时,会通过`delegate`调用`handleAction:`,传递相关信息。 5. ...
if ([self respondsToSelector:decodeSelector]) { [self performSelector:decodeSelector withObject:coder]; } } } ``` 7. 最后,我们需要实现自定义的`encodeWithCoder:`和`initWithCoder:`,调用自动...
if ([_delegate respondsToSelector:@selector(twoViewController:sendValue:)]) { [_delegate twoViewController:self sendValue:_twoTextF.text]; } } ``` 在`OneViewController`中,遵守协议并设置代理: ``...
if ([self.delegate respondsToSelector:@selector(actionPerformed:)]) { [self.delegate actionPerformed:self]; } } - (void)didReceiveData:(NSData *)data { if ([self.delegate respondsToSelector:@...
if ([self.delegate respondsToSelector:@selector(playerDetailsViewControllerDidCancel:)]) { [self.delegate playerDetailsViewControllerDidCancel:self]; } } - (IBAction)done:(id)sender { if (...
if ([self.realDelegate respondsToSelector:@selector(webView:decidePolicyForNavigationAction:decisionHandler:)]) { [self.realDelegate webView:webView decidePolicyForNavigationAction:navigationAction ...
if ([self.delegate respondsToSelector:@selector(calculatorInputViewDidTapBackspace:)]) { [self.delegate calculatorInputViewDidTapBackspace:self]; } } /** 按键输入事件 */ - (void)userDidTapKey:...
因此,在使用`performSelector`前,最好先使用`instancesRespondToSelector:`或`respondsToSelector:`进行检查。 8. **KVC与KVO**: - `performSelector`在Key-Value Coding(KVC)和Key-Value Observing(KVO)中...
if ([dynamicOpenMenth respondsToSelector:@selector(startWithObject:withBundle:)]) { [dynamicOpenMenth startWithObject:self withBundle:bundle]; } } ``` 3. **测试动态库**: - 在主项目的某个事件...
if ([self.navigationController.interactivePopGestureRecognizer respondsToSelector:@selector(setEnabled:)]) { self.navigationController.interactivePopGestureRecognizer.enabled = YES; } ``` 3. **处理...
Based on the provided information from "iOS 5 Programming Cookbook" by Vandad Nahavandipoor, we can derive a comprehensive set of knowledge points related to iOS development using Objective-C....
if ([self respondsToSelector:@selector(accessInstanceVariablesDirectly)] && [self accessInstanceVariablesDirectly]) { // 直接访问实例变量 self._name = @"John"; } ``` - **注意事项**: - 直接访问...