티스토리 뷰
https://www.edwith.org/boostcamp_ios/lecture/11126/
print , dump
String Interpolation :
- 프로그램 실행 중 문자열 내에 변수 또는 상수의 실질적인 값을 표현하기 위해 사용.
\()
let variableName: Int = 1
"hello! no. \(variableName) person"
import Foundation
import Swift
let age: Int = 1
print("Hello, World!")
print("Hello! No. \(age) person!")
//C언어면 printf("Hello! No. %d person"); 이런식으로 썼을걸
class Person{
var name: String = "yejin"
var age: Int = 21;
}
let yejin: Person = Person()
print(yejin)
dump(yejin)
'macOS, iOS' 카테고리의 다른 글
사진 라이브러리 만들기 (0) | 2019.05.01 |
---|---|
setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key backgroundArea.' 이런 에러가 뜰 때 (0) | 2019.05.01 |
코코아팟(cocoaPods) (0) | 2019.01.15 |
iPhone 시장 점유율과 애플의 수익에 대해서 (0) | 2019.01.08 |
mac에서 exe 파일 여는 법: wine (0) | 2018.12.24 |