【代码笔记】iOS-带输入框的UIAlertView

一,效果图。

【代码笔记】iOS-带输入框的UIAlertView

二,代码。

【代码笔记】iOS-带输入框的UIAlertView
//点击任何处,弹出输入框
-(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]; }
【代码笔记】iOS-带输入框的UIAlertView
上一篇:linux 之 popen函数


下一篇:springboot中单元测试junit的使用