336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
함수속에 함수를 넣어서 사용 가능하다.
지역변수 - 함수안에 선언된 변수
프로그램 종료 시 같이 종료 된다.
//: Playground - noun: a place where people can play
import Cocoa
var str = "Hello, playground"
//=====
func son22(age:Int) -> String{
func num1(baseAge:Int) -> Int{
return baseAge+1
}
let msg=" 나이는 \(num1(20)) "
return msg;
}
son22(1);
//=====
func son23(name:String) -> String{
func num1(baseAge:Int) -> Int{
return baseAge+1
}
let msg=" \(name)님의 한국 나이는 \(num1(20)) "
return msg;
}
son23("KEVIN");
'ios' 카테고리의 다른 글
(ios) Xcode - Swift에서 버튼 누르면 레이블에 글자 나오게 하기 (0) | 2016.04.15 |
---|---|
(ios) Xcode - Playground에서 클래스 만드는 방법 (0) | 2016.04.15 |
(ios) Xcode - Playground에서 함수 사용방법 두번째 (0) | 2016.04.14 |
(ios) Xcode - Playground에서 변수, 상수, if, switch문 사용 방법 (0) | 2016.04.14 |
(ios) Swift 개발 문서를 볼 수 있는 사이트 소개 (0) | 2016.04.14 |