iOS 自动布局管理UIScrollview,并自适应软键盘弹出

iOS 自动布局管理scrollview

  • 个人整理笔记,包含完美软键盘弹出视图
#define MAS_SHORTHAND
#define MAS_SHORTHAND_GLOBALS
#define RGBColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]

#define RGBAColor(r, g, b ,a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]

#define RandColor RGBColor(arc4random_uniform(255), arc4random_uniform(255), arc4random_uniform(255))

#import "ViewController.h"
#import "Masonry.h"

@interface ViewController ()<UITextFieldDelegate,UIScrollViewDelegate>

@property(nonatomic,strong) UIScrollView *mainScroll;

@property(nonatomic,strong) UITextField *textField;

@property(nonatomic,strong) UIView *countView;

//@property(nonatomic,assign) BOOL keyBoardlsVisible;

@property(nonatomic,assign) CGFloat insetBottom;
@end

@implementation ViewController



- (void)viewDidLoad {
    [super viewDidLoad];
    //  给 _keyBoardlsVisible 赋初值
    //    _keyBoardlsVisible = NO;
    self.insetBottom = 0;
    
    self.mainScroll = [UIScrollView new];
    [self.mainScroll setBackgroundColor:[UIColor whiteColor]];
    self.mainScroll.delegate = self;
    [self.view addSubview:self.mainScroll];
    [self.mainScroll makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self.view);
    }];
    
    
#pragma mark--包含-个View的布局方式
    //    self.countView = [[UIView alloc] init];
    //    self.countView.backgroundColor = [UIColor greenColor];
    //    [self.mainScroll addSubview:self.countView];
    //
    //    [self.countView makeConstraints:^(MASConstraintMaker *make) {
    //这句其实是指定view填充contentSize
    //        make.edges.equalTo(self.mainScroll);
    //确定宽度等于滚动条宽度,也是确定contentSize宽度的关键
    //        make.width.equalTo(self.mainScroll);
    //    }];
    //由于上面没有指定contentSize高度,此时无法确定滚动高度
    //
    //    UIImageView *imageView1 = [UIImageView new];
    //    [imageView1 setBackgroundColor:RandColor];
    //    [self.countView addSubview:imageView1];
    //    [imageView1 makeConstraints:^(MASConstraintMaker *make) {
    //        make.top.equalTo(self.countView).offset(20);
    //        make.left.right.mas_equalTo(self.countView);
    //        make.height.mas_equalTo(900);
    //    }];
    //
    //    UIImageView *imageView2 = [UIImageView new];
    //    [imageView2 setBackgroundColor:RandColor];
    //    [self.countView addSubview:imageView2];
    //    [imageView2 makeConstraints:^(MASConstraintMaker *make) {
    //        make.top.equalTo(imageView1.bottom).offset(20);
    //        make.left.right.mas_equalTo(self.countView);
    //        make.height.mas_equalTo(900);
    //    }];
    //
    //    //当视图高度大于屏幕的时候scrollView就可以滚动,设置宽度的方法相同
    //    [self.countView updateConstraints:^(MASConstraintMaker *make) {
    //        // 设置容器视图的底部与要显示的子控件的底部相同,不然scrollView不能滚动
    //        make.bottom.equalTo(imageView2);
    //    }];
    
#pragma mark--包含多个View的布局方式
    for (int i=0; i<40; i++) {
        UITextField *textF = [UITextField new];
        textF.delegate = self;//设置代理
        textF.backgroundColor = RandColor;
        [self.mainScroll addSubview:textF];
        [textF makeConstraints:^(MASConstraintMaker *make) {
            //确定宽度等于滚动条宽度,也是确定contentSize宽度的关键
            make.width.equalTo(self.mainScroll);
            //左边对齐
            make.left.equalTo(self.mainScroll);
            //y轴计算
            make.top.equalTo(self.mainScroll).offset(i*45);
            //高度写死
            make.height.equalTo(40);
        }];
        if(i==39){
            //到最后一个View时候更新scollerView的contentSize高度也就是底部最多延伸到哪里
            [self.mainScroll updateConstraints:^(MASConstraintMaker *make) {
                make.bottom.equalTo(textF.bottom);
            }];
        }
    }
    
    
    
    // 注册键盘通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrameNotification:) name:UIKeyboardWillChangeFrameNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHideNotification:) name:UIKeyboardWillHideNotification object:nil];
}

#pragma mark--代理方法键盘弹出
-(void)textFieldDidBeginEditing:(UITextField *)textField
{   //得到当前操作的view
    self.textField = textField;
}

#pragma mark--代理方法键盘关闭
-(void)textFieldDidEndEditing:(UITextField *)textField
{   //得到当前操作的view
    self.textField = textField;
}

#pragma mark--键盘弹出
- (void)keyboardWillChangeFrameNotification:(NSNotification *)notification {
    
    // 获取键盘基本信息(动画时长与键盘高度)
    NSDictionary *userInfo = [notification userInfo];
    CGRect rect = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    CGFloat keyboardHeight   = CGRectGetHeight(rect);
    CGFloat keyboardDuration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    //获得当前输入框的Y坐标
    CGFloat inputY = self.textField.frame.origin.y+self.textField.frame.size.height;
    //滑动距离
    CGFloat offsetY = self.mainScroll.contentOffset.y;
    //输入框距离屏幕底部
    CGFloat inputJd = self.mainScroll.frame.size.height-(inputY-offsetY);
    
    NSLog(@"键盘高度==%f,输入框距离底部距离==%f",keyboardHeight,inputJd);
    if(inputJd<keyboardHeight){
        self.insetBottom = keyboardHeight-inputJd;
        // 更新滚动条
        [UIView animateWithDuration:keyboardDuration animations:^{
            [self.mainScroll setContentOffset:CGPointMake(0, offsetY+self.insetBottom) animated:YES];
        }];
    }
}
#pragma mark--键盘隐藏
- (void)keyboardWillHideNotification:(NSNotification *)notification {
    
    // 获得键盘动画时长
    NSDictionary *userInfo   = [notification userInfo];
    CGFloat keyboardDuration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    //滑动距离
    CGFloat offsetY = self.mainScroll.contentOffset.y;
    // 更新滚动条
    [UIView animateWithDuration:keyboardDuration animations:^{
        [self.mainScroll setContentOffset:CGPointMake(0, offsetY-self.insetBottom) animated:YES];
    }];
    self.insetBottom = 0;
    
}
#pragma mark--触摸事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [super touchesBegan:touches withEvent:event];
    [self.view endEditing:YES];
}

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
    [self.view endEditing:YES];
}
#pragma mark--移除通知
- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

@end


©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_x阅读 15,967评论 3 119
  • 这是迟到了一年的旅行 两家共八人 包括两个四、五岁的娃娃 出发的时候国内正是高温烧烤模式 东京却是30度左右 不时...
    声声慢歌阅读 180评论 0 0
  • 多情的秋风吹皱寂寞的湖深藏鱼群抚摸过后的斑斓褪色的老树默默立于河畔迎风梳理着枯黄的残迹回忆是一把蘸糖的尖刀划过心房...
    吾念所归阅读 657评论 6 1
  • 天灰蒙蒙的! 思考着。 现正是少年年华。 是应像风般飞扬? 还是像山般稳重?
    韵译阅读 149评论 0 0
  • (一) 27年前,我16岁,在三堰读师范二年级,W21岁,师范毕业,在樱桃沟沟口那个山崖子上教小学。 那一天,W偷...
    r卡布青青r阅读 1,765评论 0 28