Fly to the sky & Return

[IOS] Alert을 이용한 로그인 만들기.....1 본문

프로그래밍/Swift(IOS & Mac)

[IOS] Alert을 이용한 로그인 만들기.....1

낼은어떻게 2016. 1. 11. 16:45
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.











alertViewStytle 을 이용하여 로그인 창을 만드는 코드입니다.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@IBAction func onClick(sender: AnyObject) {
        let alert = UIAlertView(title: nil, message: "로그인 입력폼", delegate: self, cancelButtonTitle: "Login")
        alert.alertViewStyle = UIAlertViewStyle.LoginAndPasswordInput
        alert.show()
}
   
func alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int) {
        
        switch buttonIndex {
        case alertView.cancelButtonIndex :
            let loginId = alertView.textFieldAtIndex(0)?.text
            let loginPw = alertView.textFieldAtIndex(1)?.text
            self.label1.text = loginId
            self.label2.text = loginPw
            
        default :
            break
            
        }
}
 
 
 
cs