스위프트
-
[iOS|Swift] storyboard 없이 코드로 UI 구현하기Swift 2022. 5. 8. 23:35
1. Storyboard와 관련된 것들 삭제하기 1-1. Main.storyboard 삭제하기 1-2. Info.plist에서 Storyboard Name 삭제하기 1-3. General에서 Main Interface 삭제하기 실행을 해보면 까만 화면이 뜸 2. RootViewController 지정 🖍️ iOS Deployment Target 13이상인 경우에는 SceneDelegate에서 작성 SceneDelegate.swift class SceneDelegate: UIResponder, UIWindowSceneDelegate { var window: UIWindow? func scene(_ scene: UIScene, willConnectTo session: UISceneSession, option..
-
[백준 2441][Swift] 별 찍기 - 4알고리즘 2022. 4. 1. 16:29
코드 let input = Int(readLine()!)! for i in 1...input { var total: String = "" for j in 1...input { if j < i { total += " " } else { total += "*" } } print(total) } https://www.acmicpc.net/problem/2441 2441번: 별 찍기 - 4 첫째 줄에는 별 N개, 둘째 줄에는 별 N-1개, ..., N번째 줄에는 별 1개를 찍는 문제 하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오. www.acmicpc.net