IOS学习之路二十二(UIAlertView获得文本框内容及添加北京图片)

时间:2024-01-08 16:30:02

今天写项目要用到警告框带输入框的,于是就自己做了个小demo.

效果图大体如下:

IOS学习之路二十二(UIAlertView获得文本框内容及添加北京图片)

下面简单介绍一下UIAlertView

alertViewStyle属性有以下三种选项:

 UIAlertViewStylePlainTextInput 添加一个普通输入框 
 UIAlertViewStyleSecureTextInput  密码输入框
 UIAlertViewStyleLoginAndPasswordInput  普通输入框加密码输入框

下面分别来看看这三种属性的效果:

IOS学习之路二十二(UIAlertView获得文本框内容及添加北京图片)        IOS学习之路二十二(UIAlertView获得文本框内容及添加北京图片)

(UIAlertViewStylePlainTextInput)                                (UIAlertViewStyleSecureTextInput)

IOS学习之路二十二(UIAlertView获得文本框内容及添加北京图片)

(UIAlertViewStyleLoginAndPasswordInput)

下面附上自己写的部分关键代码:

  1. #pragma mark 弹出菜单
  2. - (IBAction)showMenu:(id)sender {
  3. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"修改Webservice请求地址"
  4. message:@"请输入地址:(http://192.168.6.12)"
  5. delegate:self cancelButtonTitle:@"确定"
  6. otherButtonTitles:@"取消", nil];
  7. [alertView setAlertViewStyle:UIAlertViewStylePlainTextInput];
  8. [alertView show];
  9. //背景View
  10. UIView *additonBackgroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, alertView.frame.size.width-30, alertView.frame.size.height-20)];
  11. additonBackgroundView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bag3.jpg"]]; //添加背景图片
  12. [alertView insertSubview:additonBackgroundView atIndex:1];
  13. }
  14. #pragma mark   获得输入框里的值
  15. - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
  16. NSString *buttonTitle = [alertView buttonTitleAtIndex:buttonIndex];
  17. if ([buttonTitle isEqualToString:@"确定"]){
  18. UITextField *tf=[alertView textFieldAtIndex:0];//获得输入框
  19. NSString * requestedURL=tf.text;//获得值
  20. }
  21. }

转载请注明:

新浪微博:http://weibo.com/u/3202802157