-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@"请输入分组名称" message:@"
" delegate:self cancelButtonTitle:@"添加" otherButtonTitles:@"取消",nil];
[dialog setAlertViewStyle:UIAlertViewStylePlainTextInput];
[[dialog textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad];
[dialog show];
}