标签:style blog http color ar sp div 2014 on
效果图:
代码:
//点击任何处,弹出输入框 -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@"请输入分组名称" message:@"\n" delegate:self cancelButtonTitle:@"添加" otherButtonTitles:@"取消",nil]; [dialog setAlertViewStyle:UIAlertViewStylePlainTextInput]; [[dialog textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad]; [dialog show]; }
标签:style blog http color ar sp div 2014 on
原文地址:http://www.cnblogs.com/yang-guang-girl/p/4040348.html