2
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도 추가하려고했습니다. 그러나 그것은 변화하지 않습니다. 누군가 나를 도와 줄 수 있습니까?이 UIAlertView의 위치가 변경되지 않는 이유는 무엇입니까?
이 단어에 대한 의견이 있으십니까? 같은 문제. – ohhh