Iphone在ScrollView下点击TextField使文本筐不被键盘遮住

1.拖一个Scroll View视图填充View窗口,将Scroll View视图拖大一些,使其超出屏幕。

2.向Scroll View拖(添加)多个Label视图和Text View视图。

3.在.h头文件中添加如下代码:

[cpp] view plaincopyprint?
  1. #import <UIKit/UIKit.h>   
  2.   
  3.   
  4. @interface ShowTextFiled : UIViewController {  
  5.     IBOutlet UIScrollView *myscrollview;  
  6.       
  7.     UITextField * currentTextfield;//当前的文本筐   
  8.     BOOL keyboardIsShown;  
  9. }  
  10. @property (nonatomic,retain)UIScrollView *myscrollview;  
  11.   
  12. @end  
#import <UIKit/UIKit.h>
@interface ShowTextFiled : UIViewController {
IBOutlet UIScrollView *myscrollview;
UITextField * currentTextfield;//当前的文本筐
BOOL keyboardIsShown;
}
@property (nonatomic,retain)UIScrollView *myscrollview;
@end

4.在Interface Builer中,将每个Text Field的delegate连接到File‘s Owner。这一步很重要,因为它使得文本筐的各种事件如:textFieldDidBeginEditing。textFieldDidEndEditing等可被试图控制器处理。

5.在viewDidLoad方法里面修改ScrollView的内容大小:

[cpp] view plaincopyprint?
  1. - (void)viewDidLoad  
  2. {  
  3.     //下面这两句话必须写,否则scrollview不可以动   
  4.     myscrollview.frame = CGRectMake(0, 0, 320, 460);  
  5.     [myscrollview setContentSize:CGSizeMake(320,651 )];  
  6.     [super viewDidLoad];  
  7.     // Do any additional setup after loading the view from its nib.   
  8. }  
- (void)viewDidLoad
{
//下面这两句话必须写,否则scrollview不可以动
myscrollview.frame = CGRectMake(0, 0, 320, 460);
[myscrollview setContentSize:CGSizeMake(320,651 )];
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}

6.在View窗口显示以前注册两个通知,这两个通知可以告诉你键盘何时显示或消失,在viewWillAppear方法里面注册:

[cpp] view plaincopyprint?
  1. //页面加载前调用的方法,注册两个通知:一个是键盘弹出来的通知,另外一个是键盘隐藏的通知,不同的通知调用不同的方法进行处理   
  2. -(void) viewWillAppear:(BOOL)animated{  
  3.     //键盘弹起的通知   
  4.     [[NSNotificationCenter defaultCenter]   
  5.      addObserver:self  
  6.      selector:@selector(keyboardDidShow:)   
  7.      name:UIKeyboardDidShowNotification  
  8.      object:self.view.window];  
  9.     //键盘隐藏的通知   
  10.     [[NSNotificationCenter defaultCenter]  
  11.      addObserver:self  
  12.      selector:@selector(keyboardDidHide:)   
  13.      name:UIKeyboardDidHideNotification   
  14.      object:nil];  
  15. }  
//页面加载前调用的方法,注册两个通知:一个是键盘弹出来的通知,另外一个是键盘隐藏的通知,不同的通知调用不同的方法进行处理
-(void) viewWillAppear:(BOOL)animated{
//键盘弹起的通知
[[NSNotificationCenter defaultCenter] 
addObserver:self
selector:@selector(keyboardDidShow:) 
name:UIKeyboardDidShowNotification
object:self.view.window];
//键盘隐藏的通知
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(keyboardDidHide:) 
name:UIKeyboardDidHideNotification 
object:nil];
}

7.上面的通知中,当键盘弹起的时候会调用 keyboardDidShow方法,当键盘消失会调用keyboardDidHide方法,这两个方法定义如下:

[cpp] view plaincopyprint?
  1. //键盘弹起后处理scrollView的高度使得textfield可见   
  2. -(void)keyboardDidShow:(NSNotification *)notification{  
  3.     if (keyboardIsShown) {  
  4.         return;  
  5.     }  
  6.     NSDictionary * info = [notification userInfo];  
  7.     NSValue *avalue = [info objectForKey:UIKeyboardFrameEndUserInfoKey];  
  8.     CGRect keyboardRect = [self.view convertRect:[avalue CGRectValue] fromView:nil];  
  9.     CGRect viewFrame = [myscrollview frame];  
  10.     viewFrame.size.height -= keyboardRect.size.height;  
  11.     myscrollview.frame = viewFrame;  
  12.     CGRect textFieldRect = [currentTextfield frame];  
  13.     [myscrollview scrollRectToVisible:textFieldRect animated:YES];  
  14.     keyboardIsShown = YES;  
  15. }  
//键盘弹起后处理scrollView的高度使得textfield可见
-(void)keyboardDidShow:(NSNotification *)notification{
if (keyboardIsShown) {
return;
}
NSDictionary * info = [notification userInfo];
NSValue *avalue = [info objectForKey:UIKeyboardFrameEndUserInfoKey];
CGRect keyboardRect = [self.view convertRect:[avalue CGRectValue] fromView:nil];
CGRect viewFrame = [myscrollview frame];
viewFrame.size.height -= keyboardRect.size.height;
myscrollview.frame = viewFrame;
CGRect textFieldRect = [currentTextfield frame];
[myscrollview scrollRectToVisible:textFieldRect animated:YES];
keyboardIsShown = YES;
}

[cpp] view plaincopyprint?
  1. //键盘隐藏后处理scrollview的高度,使其还原为本来的高度   
  2. -(void)keyboardDidHide:(NSNotification *)notification{  
  3.     NSDictionary *info = [notification userInfo];  
  4.     NSValue *avalue = [info objectForKey:UIKeyboardFrameEndUserInfoKey];  
  5.     CGRect keyboardRect = [self.view convertRect:[avalue CGRectValue] fromView:nil];  
  6.     CGRect viewFrame = [myscrollview frame];  
  7.     viewFrame.size.height += keyboardRect.size.height;  
  8.     myscrollview.frame = viewFrame;  
  9.     keyboardIsShown = NO;  
  10. }  
//键盘隐藏后处理scrollview的高度,使其还原为本来的高度
-(void)keyboardDidHide:(NSNotification *)notification{
NSDictionary *info = [notification userInfo];
NSValue *avalue = [info objectForKey:UIKeyboardFrameEndUserInfoKey];
CGRect keyboardRect = [self.view convertRect:[avalue CGRectValue] fromView:nil];
CGRect viewFrame = [myscrollview frame];
viewFrame.size.height += keyboardRect.size.height;
myscrollview.frame = viewFrame;
keyboardIsShown = NO;
}

8.重写TextField的三个事件方法:

当点击TextField视图时会促发如下方法:这个方法会将当前点击的文本筐赋值给currentTextField成员变量

[cpp] view plaincopyprint?
  1. -(void)textFieldDidBeginEditing:(UITextField *)textFieldView{  
  2.     currentTextfield = textFieldView;  
  3. }  
-(void)textFieldDidBeginEditing:(UITextField *)textFieldView{
currentTextfield = textFieldView;
}
当用户点击键盘中的Return键时,会促发如下方法:

[cpp] view plaincopyprint?
  1. -(BOOL)textFieldShouldReturn:(UITextField *)textFieldView{  
  2.     [textFieldView resignFirstResponder];  
  3.     return NO;  
  4. }  
-(BOOL)textFieldShouldReturn:(UITextField *)textFieldView{
[textFieldView resignFirstResponder];
return NO;
}

上一个方法中的resignFirstResponder会隐藏键盘,这样会促发另外一个方法:这里将currentTextField设为nil

[cpp] view plaincopyprint?
  1. -(void)textFieldDidEndEditing:(UITextField *)textFieldView{  
  2.     currentTextfield = nil;  
  3. }  
-(void)textFieldDidEndEditing:(UITextField *)textFieldView{
currentTextfield = nil;
}

9.最后不要忘了在View窗口关闭之前移除前面注册的通知:

[cpp] view plaincopyprint?
  1. //页面消失前取消通知   
  2. -(void)viewWillDisappear:(BOOL)animated{  
  3.     [[NSNotificationCenter defaultCenter]  
  4.      removeObserver:self  
  5.      name:UIKeyboardDidShowNotification  
  6.      object:nil];  
  7.       
  8.     [[NSNotificationCenter defaultCenter]  
  9.      removeObserver:self  
  10.      name:UIKeyboardDidHideNotification  
  11.      object:nil];  
  12. }  
//页面消失前取消通知
-(void)viewWillDisappear:(BOOL)animated{
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:UIKeyboardDidHideNotification
object:nil];
}



生命在于运动,先去打球,晚上回来在继续,哈哈。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/388350.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python 仪表盘_如何使用Python刮除仪表板

python 仪表盘Dashboard scraping is a useful skill to have when the only way to interact with the data you need is through a dashboard. We’re going to learn how to scrape data from a dashboard using the Selenium and Beautiful Soup packages in Python. The S…

VS2015 定时服务及控制端

一. 服务端 如下图—新建项目—经典桌面—Windows服务—起名svrr2. 打到server1 改名为svrExecSqlInsert 右击对应的设计界面&#xff0c;添加安装服务目录结构如图 3. svrExecSqlInsert里有打到OnStart()方法开始写代码如下 /// <summary>/// 服务开启操作/// </su…

Iphone表视图的简单操作

1.创建一个Navigation—based—Application项目&#xff0c;这样Interface Builder中会自动生成一个Table View&#xff0c;然后将Search Bar拖放到表示图上&#xff0c;以我们要给表示图添加搜索功能&#xff0c;不要忘记将Search Bar的delegate连接到File‘s Owner项&#xf…

aws emr 大数据分析_DataOps —使用AWS Lambda和Amazon EMR的全自动,低成本数据管道

aws emr 大数据分析Progression is continuous. Taking a flashback journey through my 25 years career in information technology, I have experienced several phases of progression and adaptation.进步是连续的。 在我25年的信息技术职业生涯中经历了一次闪回之旅&…

先进的NumPy数据科学

We will be covering some of the advanced concepts of NumPy specifically functions and methods required to work on a realtime dataset. Concepts covered here are more than enough to start your journey with data.我们将介绍NumPy的一些高级概念&#xff0c;特别是…

lsof命令详解

基础命令学习目录首页 原文链接&#xff1a;https://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316599.html 简介 lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下&#xff0c;任何事物都以文件的形式存在&#xff0c;通过文件不仅仅可以访问常规…

统计和冰淇淋

Photo by Irene Kredenets on UnsplashIrene Kredenets在Unsplash上拍摄的照片 摘要 (Summary) In this article, you will learn a little bit about probability calculations in R Studio. As it is a Statistical language, R comes with many tests already built in it, …

信息流服务器哪种好,选购存储服务器需要注意六大关键因素,你知道几个?

原标题&#xff1a;选购存储服务器需要注意六大关键因素&#xff0c;你知道几个&#xff1f;信息技术的飞速发展带动了整个信息产业的发展。越来越多的电子商务平台和虚拟化环境出现在企业的日常应用中。存储服务器作为企业建设环境的核心设备&#xff0c;在整个信息流中承担着…

t3 深入Tornado

3.1 Application settings 前面的学习中&#xff0c;在创建tornado.web.Application的对象时&#xff0c;传入了第一个参数——路由映射列表。实际上Application类的构造函数还接收很多关于tornado web应用的配置参数。 参数&#xff1a; debug&#xff0c;设置tornado是否工作…

对数据仓库进行数据建模_确定是否可以对您的数据进行建模

对数据仓库进行数据建模Some data sets are just not meant to have the geospatial representation that can be clustered. There is great variance in your features, and theoretically great features as well. But, it doesn’t mean is statistically separable.某些数…

15 并发编程-(IO模型)

一、IO模型介绍 1、阻塞与非阻塞指的是程序的两种运行状态 阻塞&#xff1a;遇到IO就发生阻塞&#xff0c;程序一旦遇到阻塞操作就会停在原地&#xff0c;并且立刻释放CPU资源 非阻塞&#xff08;就绪态或运行态&#xff09;&#xff1a;没有遇到IO操作&#xff0c;或者通过某种…

不提拔你,就是因为你只想把工作做好

2019独角兽企业重金招聘Python工程师标准>>> 我有个朋友&#xff0c;他30出头&#xff0c;在500强公司做技术经理。他戴无边眼镜&#xff0c;穿一身土黄色的夹克&#xff0c;下面是一条常年不洗的牛仔裤加休闲皮鞋&#xff0c;典型技术高手范。 三 年前&#xff0c;…

python内置函数多少个_每个数据科学家都应该知道的10个Python内置函数

python内置函数多少个Python is the number one choice of programming language for many data scientists and analysts. One of the reasons of this choice is that python is relatively easier to learn and use. More importantly, there is a wide variety of third pa…

C#使用TCP/IP与ModBus进行通讯

C#使用TCP/IP与ModBus进行通讯1. ModBus的 Client/Server模型 2. 数据包格式及MBAP header (MODBUS Application Protocol header) 3. 大小端转换 4. 事务标识和缓冲清理 5. 示例代码 0. MODBUS MESSAGING ON TCP/IP IMPLEMENTATION GUIDE 下载地址&#xff1a;http://www.modb…

Hadoop HDFS常用命令

1、查看hdfs文件目录 hadoop fs -ls / 2、上传文件 hadoop fs -put 文件路径 目标路径 在浏览器查看:namenodeIP:50070 3、下载文件 hadoop fs -get 文件路径 保存路径 4、设置副本数量 -setrep 转载于:https://www.cnblogs.com/chaofan-/p/9742633.html

SAP UI 搜索分页技术

搜索分页技术往往和另一个术语Lazy Loading&#xff08;懒加载&#xff09;联系起来。今天由Jerry首先介绍S/4HANA&#xff0c;CRM Fiori和S4CRM应用里的UI搜索分页的实现原理。后半部分由SAP成都研究院菜园子小哥王聪向您介绍Twitter的懒加载实现。 关于王聪的背景介绍&#x…

万彩录屏服务器不稳定,万彩录屏 云服务器

万彩录屏 云服务器 内容精选换一换内网域名是指仅在VPC内生效的虚拟域名&#xff0c;无需购买和注册&#xff0c;无需备案。云解析服务提供的内网域名功能&#xff0c;可以让您在VPC中拥有权威DNS&#xff0c;且不会将您的DNS记录暴露给互联网&#xff0c;解析性能更高&#xf…

针对数据科学家和数据工程师的4条SQL技巧

SQL has become a common skill requirement across industries and job profiles over the last decade.在过去的十年中&#xff0c;SQL已成为跨行业和职位描述的通用技能要求。 Companies like Amazon and Google will often demand that their data analysts, data scienti…

全排列算法实现

版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。 https://blog.csdn.net/summerxiachen/article/details/605796231.全排列的定义和公式&#xff1a; 从n个数中选取m&#xff08;m<n&#xff09;个数按照一定的顺序进行排成一个列&#xff0c;叫…

14.并发容器之ConcurrentHashMap(JDK 1.8版本)

1.ConcurrentHashmap简介 在使用HashMap时在多线程情况下扩容会出现CPU接近100%的情况&#xff0c;因为hashmap并不是线程安全的&#xff0c;通常我们可以使用在java体系中古老的hashtable类&#xff0c;该类基本上所有的方法都采用synchronized进行线程安全的控制&#xff0c;…