Swift

[Swift] Object와 문자열

응디 2021. 3. 25. 17:41

1. Swift에서 Object란?

  • 어떤 특정 일을 수행하는 것을 의미한다. ( 각자 해야 할 일이 있다. - ViewController가 그 예시 )
  • data와 method를 합친것 즉, 데이터와 기능을 합친 것을 의미한다
  • App은 여러개의 Object로 구성되어 있다.

 

 

2. Swift 문자열 삽입

  • text에 변수의 값을 넣을때
  • \(변수명)을 문자열에 넣어주면 변수의 값을 문자열에 삽입 가능하다.
var currentValue = 0

@IBAation func Hello(_ sender : Any){
	// \(변수명)을 넣어주면 변수 값을 text에 삽입 가능
	let message = "가격은 \(currentValaue)원 입니다."
	
	let alert = UIAlertController(title: "Hello", message : message, preferredStyle:.alert)
	
	let action = UIAlertAction(title, "OK", style:.default, handler: nil)
	
	alert.addAction(action)                                          
	
	present(alert, animated: true, completion : nil)
	
	 
}

 

  • 결과화면