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。但它只是没有改变。有人可以帮我吗?
Best Answer-推荐答案 strong>
原来这只是 Apple 试图让每个人都转向 UIAlertController。 UIAlertController 自动移动。所以这将是我对这里的任何人的建议。
关于ios - 为什么这个 UIAlertView 的位置没有改变?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27330809/
|