UIKit 框架之UIResponder

前面博客有讲触摸事件提过响应事件和响应者链,而管理响应者链的正是UIResponder。

一、代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    NSLog(@"window:%@",[self.window nextResponder]);
    NSLog(@"AppDelegate: %@",[self nextResponder]);
    return YES;
}
//
//  ViewController.m
//  UIResponder
//
//  Created by cyw on 15-5-16.
//  Copyright (c) 2015年 cyw. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()<UITextFieldDelegate>

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    UITextField *textField=[[UITextField alloc]init];
    textField.frame=CGRectMake(100, 100, 100, 40);
    textField.borderStyle=UITextBorderStyleLine;
    textField.backgroundColor=[UIColor redColor];
    textField.delegate=self;
    textField.tag=10001;
    BOOL canBecomeFirstResponder=[textField canBecomeFirstResponder     ];
    BOOL canResignFirstResponder=[textField canResignFirstResponder];
    NSLog(@"%d  %d",canBecomeFirstResponder,canResignFirstResponder);
    [textField becomeFirstResponder];
    [self.view addSubview:textField];

    UITextField *textField1=[[UITextField alloc]init];
    textField1.frame=CGRectMake(100, 200, 100, 40);
    textField1.borderStyle=UITextBorderStyleLine;
    textField1.backgroundColor=[UIColor redColor];
    textField1.delegate=self;
    textField1.tag=10002;
    [self.view addSubview:textField1];

     UIResponder *responder1= [textField nextResponder];
     UIResponder *responder2=[self nextResponder];
     UIResponder *responder3=[self.view nextResponder];
     NSLog(@"textField:%@\nViewController:%@\nself.view:%@",responder1,responder2,responder3);

}
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
       BOOL isFirstResponder= [textField isFirstResponder];
        NSLog(@"textField%d isFirstResponder %d:",textField.tag,isFirstResponder);
}

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

@end

 二、结果

2015-05-17 00:30:02.427 UIResponder[1132:60b] window:<UIApplication: 0x8d71b80>
2015-05-17 00:30:02.437 UIResponder[1132:60b] AppDelegate: (null)
2015-05-17 00:30:02.446 UIResponder[1132:60b] 1  1
2015-05-17 00:30:02.449 UIResponder[1132:60b] textField:<UIView: 0x8e742d0; frame = (0 0; 320 480); autoresize = RM+BM; layer = <CALayer: 0x8e739e0>>
ViewController:(null)
self.view:<ViewController: 0x8c9b8c0>
2015-05-17 00:30:02.463 UIResponder[1132:60b] textField10001 isFirstResponder 1:

 三、由上面的输出结果有一点比较纳闷,为什么ViewController返回的是NULL?我想了半天也没想到什么原因,也请高手给指点一下

四、其实UIResponder不仅仅只有这些,具体可以参考:http://southpeak.github.io/blog/2015/03/07/uiresponder/?utm_source=tuicool

时间: 2024-11-08 21:59:04

UIKit 框架之UIResponder的相关文章

iOS UIKit 框架 346 篇文档分类整理 - 预告

iOS UIKit 框架 346 篇文档分类整理 - 预告 太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. 当前正在进行的是 "iOS Foundation 框架 224 篇相关文档分

UIKit 框架之UIView二

下面这些都是UIView一些基本的东西,具体的可以参考UIKit 框架之UIView一博客 一.自定义一个View // // MyView.m // UIView // // Created by cyw on 15-5-17. // Copyright (c) 2015年 cyw. All rights reserved. // #import "MyView.h" @implementation MyView - (id)initWithFrame:(CGRect)frame {

UIKit 框架之Bar、Controller

UIKit框架中有各种Bar,UITabBar.UINavigationBar.UIToolbar.Bar对应的就有一些Item,tabBarItem.navigationItem.toolbarItems,再加上UIViewController.UINavigationController.UITabBarController很容易搞糊涂.我看了好久,没看明白.动手敲了下才有一点感觉. 一.联系 一个UINavigationController对应着一个UINavigationBar.UITo

UIKit框架类层次图

学习UIKit应该首选了解UIKit类的层次图,从根类一层一层的拨.

UIKit 框架之UICollectionViewController

1.自定义单元格 #import <UIKit/UIKit.h> @interface myCollectionViewCell : UICollectionViewCell @property(nonatomic,strong) UIImageView *myImageView; @property(nonatomic,strong) UILabel *nameLabel; @end #import "myCollectionViewCell.h" @implementa

UIKit 框架之UIView一

- (id)initWithFrame:(CGRect)aRect //通过一个矩形对象初始化 Configuring a View's Visual Appearance //配置视觉展示 @property(nonatomic, copy) UIColor *backgroundColor //设置背景色 @property(nonatomic, getter=isHidden) BOOL hidden //隐藏view,默认为NO @property(nonatomic) CGFloat

UIKit 框架之UICollectionView

1.自定义UICollectionViewCell 在myCollectionViewCell.h中声明两个属性 // // myCollectionViewCell.h // UICollectionView // // Created by City--Online on 15/5/25. // Copyright (c) 2015年 XQB. All rights reserved. // #import <UIKit/UIKit.h> @interface myCollectionVi

UIKit 框架之UIControl

前面的UIWebView.UIImageView这些都是视图,显示为主,与用户交互较少,最多也就是通过UIResponder与用户交互.但这样会很麻烦,还要判断点击次数等等问题,那问题就来了:OC中怎么解决这样的问题?此时UIControl就出现了,就是用来消灭这个问题的. 属性 enabled 控件默认是启用的.要禁用控件,可以将enabled属性设置为NO,这将导致控件忽略任何触摸事件.被禁用后,控件还可以用不同的方式显示自己,比如变成灰色不可用.虽然是由控件的子类完成的,这个属性却存在于U

UIKit框架之NSObject

首先学习NSObject  // // ViewController.m // localization // // Created by City--Online on 15/5/15. // Copyright (c) 2015年 XQB. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (voi