iOS7에서 UIAlertView에 UITextField를 추가 할 수 없습니다… iOS 6에서 작동합니다.
아래 코드는 iOS6 (및 이전)에서 작동하지만 UITextField는 iOS7에서 표시되지 않습니다 ... UITextField를 iOS7의 UIAlterView에 표시하는 방법에 대한 아이디어가 있습니까?
UIAlertView* dialog = [[UIAlertView alloc] init];
[dialog setDelegate:self];
[dialog setTitle:@"Enter ESC Score"];
[dialog setMessage:@" "];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];
dialog.tag = 5;
nameField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)];
[nameField setKeyboardType:UIKeyboardTypeNumberPad];
[nameField becomeFirstResponder];
[nameField setBackgroundColor:[UIColor whiteColor]];
[dialog addSubview:nameField];
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 0.0);
[dialog setTransform: moveUp];
[dialog show];
[dialog release];
[nameField release];
iOS6 용 코드 실행은 다음을 표시합니다.
iOS7의 동일한 코드가 다음을 표시합니다 (UITextField가 누락되고 키보드가 없음).
iOS 7에서는 UIAlertView의 뷰 계층 구조를 쉽게 변경할 수 없습니다. (그렇지 않아야합니다. 설명서에는 특별히하지 말라고 명시되어 있습니다.) 개발자 포럼으로 가서 이에 대한 긴 토론을보십시오.
귀하의 경우 한 가지 대안은 alert.alertViewStyle = UIAlertViewStylePlainTextInput;
텍스트 필드를 추가합니다. 을 사용하여 UIAlertView 대리자 콜백에서 액세스 할 수 있습니다 UITextField *textField = [alertView textFieldAtIndex:0];
.
@Aaron Brager는 올바른 솔루션을 가지고있었습니다. 또한 그의 제안에 따라 숫자 키패드를 기본값으로 설정하는 줄을 추가했습니다.
UIAlertView* dialog = [[UIAlertView alloc] init];
[dialog setDelegate:self];
[dialog setTitle:@"Enter ESC Score"];
[dialog setMessage:@" "];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];
dialog.tag = 5;
dialog.alertViewStyle = UIAlertViewStylePlainTextInput;
[dialog textFieldAtIndex:0].keyboardType = UIKeyboardTypeNumberPad;
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 0.0);
[dialog setTransform: moveUp];
[dialog show];
[dialog release];
UIAlertView *alertView = [[UIAlertView alloc]
initWithTitle:@"Credit Card Number"
message:@"Please enter your credit card number:"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Ok", nil];
[alertView setAlertViewStyle:UIAlertViewStylePlainTextInput];
/* Display a numerical keypad for this text field */
UITextField *textField = [alertView textFieldAtIndex:0];
textField.keyboardType = UIKeyboardTypeNumberPad;
[alertView show];
그냥 매력으로
모든 버전의 iOS에 대한 UIAlertView의 두 UITextField
-(IBAction) showAlertView {
UIAlertView *alert;
UITextField *callForwardNumber;
UItextField *callForwardCondition;
alert = [[UIAlertView alloc] initWithTitle:@"Enter Phone Number & Rule"
message:@""
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Save", nil];
//alert.transform = CGAffineTransformMakeTranslation(0, 110);
callForwardNumber = [[UITextField alloc] init];
callForwardNumber.keyboardType = UIKeyboardTypeNumberPad;
callForwardNumber.text = [R.prefs objectForKey:@"fwd_number"];
callForwardNumber.borderStyle = UITextBorderStyleRoundedRect;
callForwardNumber.delegate = self;
callForwardNumber.tag = 1;
callForwardCondition = [[UITextField alloc] init];
callForwardCondition.text = callCondition;
callForwardCondition.borderStyle = UITextBorderStyleRoundedRect;
callForwardCondition.delegate = self;
callForwardCondition.tag = 2;
[callForwardCondition setKeyboardType:UIKeyboardTypeNumberPad];
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
UIView* customAccessory =
[[UIView alloc] initWithFrame:CGRectMake(0, 0, 250, 55)];
callForwardNumber.frame = CGRectMake(0, 0, 245.0, 25.0);
callForwardCondition.frame = CGRectMake(0, 30.0, 245.0, 25.0);
[customAccessory addSubview:callForwardNumber];
[customAccessory addSubview:callForwardCondition];
[alert setValue:customAccessory forKey:@"accessoryView"];
[alert show];
} else {
alert.message = @"\n\n\n";
[alert show];
callForwardNumber.frame = CGRectMake(20.0, 45.0, 245.0, 25.0);
callForwardCondition.frame = CGRectMake(20.0, 75.0, 245.0, 25.0);
[alert addSubview:callForwardNumber];
[alert addSubview:callForwardCondition];
}
}
1) In method-(id) initWithAlertTitle : (NSString *) title checkForPassword : (NSString *) password
you should add
self.alertViewStyle = UIAlertViewStylePlainTextInput;
견본:
(id)initWithAlertTitle:(NSString *)title
checkForPassword:(NSString *)password{
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
self.alertViewStyle = UIAlertViewStylePlainTextInput;
}
self = [super initWithTitle:title
message:@"" // password field will go here
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Enter", nil];
if (self) {
self.password = password;
self.hashTechnique = HashTechniqueNone; // use no hashing by default
secondMessage = @"Please Enter New Password";
thirdMessage = @"Please Re-Enter Password";
secondMessageNew = @"Please Enter Password";
}
NSLog(@" _password_ %@",_password);
NSLog(@"_old_password_ %@",[[NSUserDefaults standardUserDefaults] objectForKey:kPassword]);
return self;
}
방법 쇼 추가 다음
(void)show {
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
UITextField *passwordField = [self textFieldAtIndex:0];
passwordField.delegate = self;
self.passwordField = passwordField;
}
else
{
UITextField *passwordField = [[UITextField alloc] initWithFrame:CGRectMake(14, 45, 256, 25)];
passwordField.secureTextEntry = YES;
passwordField.placeholder = @"";
passwordField.backgroundColor = [UIColor whiteColor];
// Pad out the left side of the view to properly inset the text
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 6, 19)];
passwordField.leftView = paddingView;
passwordField.leftViewMode = UITextFieldViewModeAlways;
// // Set delegate
self.passwordField.delegate = self;
// Set as property
self.passwordField = passwordField;
// Add to subview
[self addSubview:_passwordField];
}
// Show alert
[super show];
}
메서드 클릭도 변경합니다.
#pragma mark - UIAlertViewDelegate
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
UITextField *passwordField = [self textFieldAtIndex:0];
self.passwordField = passwordField;
}
if (buttonIndex == alertView.firstOtherButtonIndex) {
if ([self enteredTextIsCorrect] || [self.title isEqualToString:secondMessage] || [self.title isEqualToString:secondMessageNew]) {
if (([self.title isEqualToString:secondMessage] || [self.title isEqualToString:secondMessageNew]) && (self.passwordField.text.length > 0)) {
self.password = self.passwordField.text;
self.title = thirdMessage;
self.passwordField.text = @"";
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
if ([self.passwordDelegate respondsToSelector:@selector(notifyParent::)]) {
[self.passwordDelegate notifyParent:thirdMessage:self.password];
}
}
}else
{
if ([self.title isEqualToString:thirdMessage]) {
[[NSUserDefaults standardUserDefaults] setObject:self.password forKey:kPassword];
[[NSUserDefaults standardUserDefaults] synchronize];
if (self.passwordDelegate) {
if ([self.passwordDelegate respondsToSelector:@selector(notifyParentWithState:)]) {
[self.passwordDelegate notifyParentWithState:YES];
}
}
}else{
if ([self.title isEqualToString:secondMessageNew]) {
self.title = secondMessageNew;
}
else{
self.title = secondMessage;
}
self.passwordField.text = @"";
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
if ([self.passwordDelegate respondsToSelector:@selector(notifyParent::)]) {
[self.passwordDelegate notifyParent:self.title:self.password];
}
}
}
}
}
// If incorrect then animate
else {
[self animateIncorrectPassword];
}
}
}
cocoacontrols.com에서 사용자 지정 컨트롤을 살펴볼 수도 있습니다. 한 번 봐 가지고 MLAertView (IOS UI 추천)와 TSAlertView (IOS UI 등 6). 회전 각도로도 변환 할 수 있습니다.
나는 또한 같은 문제에 직면하고 있습니다. 서핑하는 동안 나는 그것이 나를 위해 일하는 대답을 얻었습니다. 나는 그것이 당신에게도 효과가 있기를 바랍니다.
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Folder Name?" message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
alertView.tag = 2;
alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
[alertView show];
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
UITextField * alertTextField = [alertView textFieldAtIndex:0];
NSLog(@"alerttextfiled - %@",alertTextField.text);
}
'code' 카테고리의 다른 글
iPhone 핵심 데이터 "자동 경량 마이그레이션" (0) | 2020.11.19 |
---|---|
iOS의 전화 번호 형식 (0) | 2020.11.19 |
npm에서 nodemon을 찾을 수 없음 (0) | 2020.11.19 |
그렇지 않으면 HTML 내부에 포함 (0) | 2020.11.19 |
MongoDB가 작동하지 않습니다. (0) | 2020.11.19 |