일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 아이폰7
- 앱스토어
- 보라카이
- simulator
- setting
- Xcode
- IOS
- 신도림
- push
- 포켓볼
- UITableView
- loop
- 샘플
- 페이백
- 얻는법
- Check
- 포켓몬 GO
- swift
- 스마트폰
- swift3
- afterdelay
- error
- LG유플러스
- 공략
- 해몽
- Bitcode
- 신도림 테크노마트
- GCD
- UIView
- Example
- Today
- Total
도래울
Swift Toast Extention 본문
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: 2.0, delay: 0.1, options: .curveEaseOut, animations: {
toastLabel.alpha = 0.0
}, completion: {(isCompleted) in
toastLabel.removeFromSuperview()
})
} }
'개발 > iOS' 카테고리의 다른 글
swift image cash (0) | 2018.02.27 |
---|---|
애플 앱스토어 한국, 미국 시차 (0) | 2017.12.20 |
UILabel programmatically by Swift (0) | 2017.11.13 |
iOS 11 - Keyboard Height is returning 0 in keyboard notification (0) | 2017.10.10 |
앱스토어 앱 긴급 심사 방법 (0) | 2017.09.29 |