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 | 31 |
Tags
- Unity
- MySQL
- mssql
- MS-SQL
- PyQt5
- Excel
- node.js
- 날짜
- 함수
- flutter
- 맛집
- ASP
- javascript
- swift
- Linux
- 다이어트
- GIT
- ubuntu
- IOS
- 리눅스
- 라즈베리파이
- python
- port
- PER
- 유니티
- sqlite
- tensorflow
- pandas
- PyQt
- urllib
Archives
목록Segue (1)
아미(아름다운미소)
[iOS : Swift] Segue 코드상으로 연결하는 방법
코드로 정의하기 스토리보드를 이용하지 않고 코드상으로 연결하는 방법입니다. @IBAction private func playBtn(_ sender: UIButton) { let vc = self.storyboard?.instantiateViewController (withIdentifier: "Resultsidentifer") as! ResultsViewController vc.userChoice = getUserShape(sender) present(vc, animated: true, completion: nil) } withIdentifier의 "Resultsidentifer" 부분은 두 번째 view controller의 identifer이고 그 뒤 ResultsViewController는 clas..
랭귀지/SWIFT
2018. 2. 6. 13:19