首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

在UIAlertVIew 中 增添 UITextField

2012-09-24 
在UIAlertVIew 中 添加 UITextFieldUIAlertView *alert [[UIAlertView alloc]initWithTitle:@添加 mes

在UIAlertVIew 中 添加 UITextField

  UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"添加" message:nil delegate:self cancelButtonTitle:@"确定" otherButtonTitles: @"取消",nil];    textField = [[UITextField alloc] initWithFrame:CGRectMake(12, 45, 260, 25)];    textField.backgroundColor = [UIColor whiteColor];    [alert addSubview:textField];    CGAffineTransform transfrom = CGAffineTransformMakeTranslation(0, 30);  //实现对控件位置的控制    [alert setTransform:transfrom];    [alert show];    [alert release];
?

热点排行