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
- AI
- 파이썬
- Artificial Intelligence
- 장고
- Android
- 머신러닝
- 모델
- Machine Learning
- 기계학습
- BigData
- IOS
- Toast Message
- swift toast message
- model
- view
- python
- Deep learning
- ios toast message
- 앱
- Django
- 딥러닝
- 빅데이터
- toast
- Pycharm
- 디자인패턴
- 인공지능
- APP
- 시각화
- 템플릿
- swift
Archives
- Today
- Total
이끼의 생각
iOS Toast 메세지 만들기 (2) 본문
func showToast() {
let toastLabel = UILabel(frame: CGRect(x: view.frame.size.width/2 - 150, y: view.frame.size.height-100, width: 300, height : 35))
toastLabel.backgroundColor = UIColor.clear
toastLabel.textColor = UIColor.black
toastLabel.textAlignment = NSTextAlignment.center;
view.addSubview(toastLabel)
toastLabel.text = "토스트 메세지 입니다."
toastLabel.font = UIFont.boldSystemFont(ofSize: 18)
toastLabel.alpha = 1.0
toastLabel.layer.cornerRadius = 10;
toastLabel.clipsToBounds = true
UIView.animate(withDuration: 1.0, animations: {
toastLabel.alpha = 0.0
}, completion: {
(isBool) -> Void in
self.dismiss(animated: true, completion: nil)
})
}
'Mobile App > iOS와 Swift' 카테고리의 다른 글
[iOS Swift] 화면터치하여 키보드 내리기 (0) | 2019.04.16 |
---|---|
iOS Toast 메세지 만들기 (3) (0) | 2019.04.16 |
iOS Toast 메세지 만들기 (1) (0) | 2019.04.16 |
iOS 알림창 만들기 (1) (0) | 2019.04.16 |
Life Cycle - 라이프 사이클 (0) | 2019.04.02 |
Comments