高仿新浪微博表情键盘

下面是来客网 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)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

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

以上是来客网为你收集整理的高仿新浪微博表情键盘全部内容,希望文章能够帮你解决高仿新浪微博表情键盘所遇到的程序开发问题。

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