Swift
-
-
-
-
[Swift] Date typeSwift 2022. 3. 24. 13:54
var myNum : Int = -100 //Int는 양수, 음수를 모두 포함한다 var myUint : UInt = 100 //UInt는 음수를 인정하지 않는다 var myDouble : Double = 3.141592653589793 print(myDouble) => 3.141592653589793 // 64bit 값을 저장한다 var myFloat : Float = 3.141592653589793 print(myFloat) => 3.1415927 // 32 bit 값을 저장한다 // 총 8자리 까지만 표현된다 var myStr : String = "String" var myBool : Bool = true var myTuple = (height : 180, weight : 75, name : "Ki..
-
[SwiftUI] font size 지정하기Swift/SwiftUI 2022. 2. 24. 14:39
Typography - Visual Design - iOS - Human Interface Guidelines - Apple Developer Typography Apple provides two type families you can use in your iOS apps. San Francisco (SF). San Francisco is a sans serif type family that includes SF Pro, SF Pro Rounded, SF Mono, SF Compact, and SF Compact Rounded. SF Pro is the system font in iOS, mac developer.apple.com 위에 차트에서 보다시피 스위프트 ui는 원래 폰트 사이즈가 정해져있다 마치..