+(void)switchViewControllor:(int)index{
//获取当前应用程序的代理对象
AppDelegate *nowdelegate=[UIApplication sharedApplication].delegate;
[UIView begincs:nil context:NULL];//启动动画
[UIView setDuration:1];//设定动画时间
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:nowdelegate.window cache:YES];//动画类型
[UIView cmmitAnimation];//执行动画
键盘输入后按return回收键盘
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
[textField resignFirstResponder];
return YES;