首页 > 其他 > 详细

alertView 上添加textField

时间:2015-09-30 19:35:55      阅读:539      评论:0      收藏:0      [点我收藏+]
技术分享
- (void)showTextFieldUIAlertView
{
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"请输入消费金额" message:nil delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
    alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
    [[alertView textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad];
    [alertView show];
}

- (void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    UITextField *txt = [alertView textFieldAtIndex:0];
   
    if (buttonIndex == 1) //确定
    {
        if (txt.text.length > 0)
        {
        controller.strTotalFee = txt.text;
        else
        {
            [SVProgressHUD showErrorWithStatus:@"金额不能为空!"];
        }
    }
}

alertView 上添加textField

原文:http://www.cnblogs.com/tian-sun/p/4849799.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!