为什么这个UIAlertView的位置没有改变?

时间:2014-12-06 10:45:46

标签: ios uialertview cgrect uialertviewdelegate

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Blah"
                                                           message:nil
                                                          delegate:nil
                                                 cancelButtonTitle:@"Cancel"
                                                 otherButtonTitles:@"Enter", nil];
alert.alertViewStyle = UIAlertViewStyleSecureTextInput;
[alert textFieldAtIndex:0].delegate = self;
alert.delegate = self;
[alert show];

alert.frame = CGRectMake(0,0,200,100);

我也试过添加AffineTransform。但它并没有改变。有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

事实证明,这只是Apple试图让每个人都转向UIAlertControllers。 UIAlertController自动移动。这对我这里的任何人都是我的建议。