iphone点击空白隐藏键盘

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

     UITouch*touch =[touches anyObject];

     if(touch.phase==UITouchPhaseBegan){

         //find first response view

         for(UIView*view in[self.view subviews]){

             if([view isFirstResponder]){

                 [view resignFirstResponder];

                 break;

             }

         }

     }

}

posted on 2011-07-08 15:24  风乔  阅读(273)  评论(0编辑  收藏  举报

导航