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
- ios toast message
- view
- Android
- python
- Toast Message
- toast
- AI
- 빅데이터
- Machine Learning
- IOS
- Django
- swift
- 시각화
- BigData
- APP
- 템플릿
- Pycharm
- 앱
- 장고
- 기계학습
- 디자인패턴
- 모델
- model
- swift toast message
- Deep learning
- Artificial Intelligence
- 인공지능
- 파이썬
- 머신러닝
- 딥러닝
Archives
- Today
- Total
목록알림 (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