UITextField *textField;
UITextField *textField2;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Username and password"
message:@"\n\n\n" // 중요!! 칸을 내려주는 역할을 합니다.
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Enter", nil];
textField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 50.0, 260.0, 25.0)];
[textField setBackgroundColor:[UIColor whiteColor]];
[textField setPlaceholder:@"username"];
[alert addSubview:textField];
textField2 = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 85.0, 260.0, 25.0)];
[textField2 setBackgroundColor:[UIColor whiteColor]];
[textField2 setPlaceholder:@"password"];
[textField2 setSecureTextEntry:YES];
[alert addSubview:textField2];
// AlertView의 위치를 이동 시켜 줌.
[alert setTransform:CGAffineTransformMakeTranslation(0.0, 110.0)];
[alert show];
[alert release];
// textfield에 커서를 보내고 키보드를 표시 해 줌.
[textField becomeFirstResponder];
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
[APNs] Push notification 등록 (iOS10 대응) (0) | 2016.12.11 |
---|---|
ObjectiveC와 Javascript 상호 호출 (0) | 2015.07.09 |
UILabel - 특정 범위 색상 변경 (0) | 2015.07.09 |
Device type check (0) | 2015.07.09 |
CATransition - UINavigation push animation (0) | 2015.07.09 |
NSString - Base64 Encoding/Decoding (0) | 2015.06.30 |
UISwitch - 상태값 가져오기 (0) | 2014.12.04 |
MPMoviePlayerController - 비디오 재생 (0) | 2014.12.04 |
MPMoviePlayerController - 오디오 스트리밍 재생 (0) | 2014.12.04 |
Email 주소 유효성 검사 (0) | 2014.12.02 |