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 |
Tags
- Pycharm
- 기계학습
- 딥러닝
- swift toast message
- toast
- view
- Artificial Intelligence
- Toast Message
- 장고
- IOS
- ios toast message
- Deep learning
- 인공지능
- 빅데이터
- 디자인패턴
- APP
- 머신러닝
- AI
- 모델
- 앱
- Android
- 파이썬
- 시각화
- python
- swift
- Django
- Machine Learning
- 템플릿
- BigData
- model
Archives
- Today
- Total
목록UIAlertController (1)
이끼의 생각
iOS 알림창 만들기 (1)
안드로이드의 Alert 메시지 처럼 안드로이드에서도 간단하게 구현할 수 있다. 1. 우선 UIAlertController 객체를 생성한다. let alertController = UIAlertController(title: "title string", message: "message contents", preferredStyle: .alert) 여기서 preferredStyle은 .alert으로 하면된다. 2. 그 다음 원하는 기능 버튼들을 추가하면된다. alertController.addAction(UIAlertAction(title: "button's title", style: , handler: ) addAction에서 원하는 액션(알림창 내의 버튼)의 이름과 액션의 종류, 액션 후 작업(handl..
Mobile App/iOS와 Swift
2019. 4. 16. 16:38