일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- weatherKit
- swift
- Xcode
- 영문 개인정보처리방침
- 단일 책임원칙
- 러닝기록앱
- 한국어 개인정보처리방침
- addannotation
- 서체관리자
- AnyObject
- UICollectionViewFlowLayout
- App Store Connect
- weak var
- UIAlertAction
- SwiftUI Boolean 값
- WeatherManager
- Timer
- Required Reason API
- MKMapViewDelegate
- 러닝타이머
- Protocol
- MKMapItem
- CoreLocation
- CLLocationManagerDelegate
- Startign Assignments
- dispatchsource
- 클로저의 캡슐화
- RunningTimer
- font book
- xcode로 날씨앱 만들기
Archives
- Today
- Total
VesselWheel
문자를 화면에 출력하는 컨트롤 본문
//
// ContentView.swift
// ex02
//
// Created by tjoeun on 2023/04/15.
//
import SwiftUI
struct ContentView: View {
var body: some View {
// 문자를 화면에 출력하는 컨트롤
Text("스위프트 UI \n스위프트 UI 5.17 \n스위프트 UI")
.padding(.all, 12.0)
.padding()
.font(.system(size:50))
.fontWeight(/*@START_MENU_TOKEN@*/.semibold/*@END_MENU_TOKEN@*/)
.foregroundColor(Color.orange)
.multilineTextAlignment(.center)
.frame(width:300, height: 300)
.lineLimit(5)
.border(Color.red, width:6)
.background(Color.blue)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
'Xcode Study' 카테고리의 다른 글
Stack with spacer() (0) | 2023.10.16 |
---|---|
V, S, Z stack and divider (0) | 2023.10.16 |
ContentView(SwiftUI) (0) | 2023.10.16 |
Raw String (0) | 2023.10.16 |
Foundation String (1) | 2023.10.16 |