读书人

在UIAlertVIew 中 增添 UITextField

发布时间: 2012-09-24 13:49:42 作者: rapoo

在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];
?

读书人网 >移动开发

热点推荐