高仿新浪微博表情键盘

前端之家收集整理的这篇文章主要介绍了高仿新浪微博表情键盘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

/*
 *  键盘即将退下
 */
-(void)keyboardWillHide{

    //执行动画
    [UIView animateWithDuration:_time animations:^{

        //曲线
        [UIView setAnimationCurve:_curve];

        _bottomView.transform=CGAffineTransformIdentity;
    }];
}



- (IBAction)switchBtnClick:(id)sender {

    [self.textView resignFirstResponder];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW,(int64_t)(.15f * NSEC_PER_SEC)),dispatch_get_main_queue(),^{
        self.textView.inputView=self.textView.inputView?nil:self.emotionView;
        [self.textView becomeFirstResponder];
    });
}



-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{

    [self.view endEditing:YES];
}

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

猜你在找的iOS相关文章