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
- 개발
- Portfolio
- 컴퓨터과학총론
- php
- java
- 개발자
- javascript
- unity
- 한글
- C
- error
- it
- kakao
- android
- NGINX
- caddy
- mariadb
- H2O
- 안드로이드
- MySQL
- 구글
- 해석
- centOS7
- ubuntu
- 프래그먼트
- server
- 자바
- 번역
- techEmpower
- C lanuage
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 |