Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 비밀번호정규식
- 우분투 mysql 비밀번호 없이 로그인 될때
- svn 충돌 해결 resolved
- (using password: YES)" when trying to connect
- group_concat 구분자
- usb efi 시스템 파티션 삭제
- bootstrap
- 아파치 웹 서버의 정보 숨기기
- 부트스트랩4 세로 중앙 정렬
- libxrender1
- magic bytes
- PHP 정규식 예제
- wkhtmltopdf 실행 오류
- php 특정 문자열 취환
- html pdf 변환
- apache mod rewrite
- 구글 OTP 인증
- bootstrap modal
- mysql root 비밀번호 변경
- 자바스크립트비밀번호검증
- mysqldump: Got error: 1045
- 비밀번호검증정규식
- PHP 구글 OTP 연동
- javascript
- svn 충돌 해결 resolve
- 세로 중앙 정렬
- JQuery checkbox 컨트롤
- PHP 구글 OTP 인증
- 파라미터 & 오류
- modsecurity 설치
Archives
- Today
- Total
투덜이 개발자
swift 앱 종료 하기 예제 본문
반응형
실행중인 앱을 종료하고 싶을때가 이벤트 처리
import UIKit
class ViewController: UIViewController {
@IBAction func btnClick(_ sender: Any) {
let alert = UIAlertController(title: "앱종료하시겠습니까?", message : "저장하지 않은 내용은 삭제 될 수 있습니다.", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "예", style: .default, handler: { action in
self.showToast(message: "앱종료 실행") // 토스트 메세지 출력
UIControl().sendAction(#selector(URLSessionTask.suspend), to: UIApplication.shared, for: nil)
}))
alert.addAction(UIAlertAction(title: "아니오", style: .default, handler: nil))
self.present(alert, animated: true)
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
}
extension UIViewController {
func showToast(message : String) {
let toastLabel = UILabel(frame: CGRect(x: self.view.frame.size.width/2 - 75, y: self.view.frame.size.height-100, width: 150, height: 35))
toastLabel.backgroundColor = UIColor.black.withAlphaComponent(0.6)
toastLabel.textColor = UIColor.white
toastLabel.textAlignment = .center;
toastLabel.font = UIFont(name: "Montserrat-Light", size: 12.0)
toastLabel.text = message
toastLabel.alpha = 1.0
toastLabel.layer.cornerRadius = 10;
toastLabel.clipsToBounds = true
self.view.addSubview(toastLabel)
UIView.animate(withDuration: 4.0, delay: 0.1, options: .curveEaseOut, animations: {
toastLabel.alpha = 0.0
}, completion: {(isCompleted) in
toastLabel.removeFromSuperview()
})
} }
반응형
'Program Language > Swift' 카테고리의 다른 글
[MAC OS] 인증서 교체 시 '인증서를 신뢰하지 않음'이 뜰때 (0) | 2022.08.29 |
---|---|
zsh: command not found: pod (0) | 2021.06.21 |
IOS WEBVIEW 파일 업로드 관련 (2) | 2021.06.15 |
swift4 url 이미지 클릭 이벤트 처리 (0) | 2021.05.28 |