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 |
Tags
- 안드로이드 FCM
- swift 문자
- Flutter NativeView
- flutter rotate
- 안드로이드 앨범
- 안드로이드 에러
- 앱 꺼졌을 때 푸시 데이터 저장
- Flutter UIKitView MethodChannel
- swift autolayout
- 노티피케이션 익스텐션
- native flutter view
- 스위프트 UserDefaults
- 푸시 데이터 저장
- 안드로이드 바로가기
- silent push
- 스위프트 푸시
- 스위프트 테이블 뷰 셀
- NotificationService Extension
- 플러터 뷰 컨트롤러
- 앱 백그라운드 푸시 데이터 저장
- 스위프트
- swift sms
- 스위프트 웹뷰
- Swift flutterviewcontroller
- 안드로이드 숏컷
- Swift flutterview
- FlutterView MethodChannel
- flutter 회전
- 스위프트 앨범
- 스위프트 카메라
Archives
- Today
- Total
Things take time
[SWIFT] Toast Message 만들기 본문
[코드]
바로 코드로 넘어간다.
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) })
'iOS (기능)' 카테고리의 다른 글
[SWIFT] APNS, 푸시를 보내보자. - Node.js (0) | 2017.11.29 |
---|---|
[SWIFT] 시스템 알람(System Alarm) 사운드 가져오기 및 재생 (2) | 2017.11.28 |
[SWIFT] UITAableViewCell의 RowHeight, 높이를 유동적(Dynamic)으로 조절하기 (0) | 2017.11.13 |
[SWIFT] UITableView의 separator, 구분선 왼쪽이 안나올 때 (0) | 2017.11.13 |
[SWIFT] Create UITableView programmatically, 테이블 뷰 코드로 (0) | 2017.11.10 |