Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- php
- it
- NGINX
- 구글
- C lanuage
- 번역
- MySQL
- error
- kakao
- 개발
- caddy
- javascript
- 개발자
- server
- 한글
- 프래그먼트
- 해석
- ubuntu
- C
- techEmpower
- unity
- centOS7
- 자바
- android
- mariadb
- Portfolio
- 컴퓨터과학총론
- 안드로이드
- H2O
Archives
- Today
- Total
개발모음집
ios actionSheet 본문
ViewController.swift
class ViewController: UITableViewController {
....
@IBAction func vidision(_ sender: Any) {
let alert = UIAlertController(title: "원하는 타이틀", message: "원하는 메세지", preferredStyle: .actionSheet)
let cancel = UIAlertAction(title: "취소", style: .cancel, handler: nil)
alert.addAction(cancel)
present(alert, animated: true, completion: nil)
}
}
출처 : https://zeddios.tistory.com/111?category=682195
'TheRestDevelop' 카테고리의 다른 글
“View Controller“ is unreachable because it has no entry points, and no identifier for runtime access via (0) | 2018.09.06 |
---|---|
백그라운드 (0) | 2018.09.05 |
RTMP 스트리밍 (0) | 2018.08.15 |
hls, dash (0) | 2018.08.14 |
bootstrap - modal로 데이터 넘기기 (0) | 2018.07.24 |