어흥

[Swift] String + Variable(변수) 본문

iOS

[Swift] String + Variable(변수)

라이언납시오 2020. 8. 20. 09:17
728x90
반응형

1. 사용방법: 변수 2개 사용(String, 다른 변수)

 

2. 간단한 예시

let name = "어흥"
let msg = "My name is \(name)!"
print(msg)

 

3. 응용 예시 (Alert, 랜덤함수 사용) 

class ViewController: UIViewController {
    var curVal = 0

    override func viewDidLoad(){
        //
    }
	
    @IBAction func hello(_sender:Any){
    	let randomPrice = arc4random_uniform(10000)+1 // 1~10000사이의 랜던 숫자
        curVal = Int(randomPrice)		//randomPrice가 uInt형태기 때문에 형변환
        
    	let msg = "현재 물품의 가격은 \(curVal)원 입니다"
        
        let alert = UIAlertController(title:"Welcome to 어흥's Grocery Store")
        let action = UIAlertAction(title: "OK", style:.default, handler:nil)
    	alert.addAction(action)
        present(alert, animated:true, completion: nil)       
    }
}
728x90
반응형

'iOS' 카테고리의 다른 글

[Swift] Flow Control  (0) 2020.08.23
[Swift] 레이아웃 + 기본설정  (2) 2020.08.21
[Swift] 기초 문법/ 지식  (2) 2020.08.20
[Swift] 팝업  (2) 2020.08.12
[Swift] View Controller  (0) 2020.08.11
Comments