iOS 프로그래밍 A Swift TourGet started with a playground 선택 iOS의 Blank 선택 첫 화면 print문을 이용하여 Hello, world! 출력하기 var 는 변수타입 - 변수타입은 값이 변경 가능함.let 은 상수타입 - 상수타입은 값이 변경 불가함. 문자랑 숫자랑 합치기도 쉽네요!! String을 사용하면 숫자도 문자가 되네요. 또 이렇게 쉽게 백슬래시를 이용해서 쉽게 합쳐지네요. for문과 if문을 사용한 예를 보여주고 있네요. optionalString에 "Hello"값이 있으니까 false가 출력됩니다. ?? 연산자는 처음봅니다. 값이 있는것을 출력하는것 같습니다. switch문 예제입니다. while문 예제입니다. 그리고 repat{} while 문 예..
iOS프로그래밍 swift배우기 배열만들기 배열을 만들어 보겠습니다. 1. Xcode를 시작합니다. 2. Get started with a playground를 선택합니다. 3. iOS프로그래밍 swift배우기 배열 4. var arraycount = ["one","two"] 배열을 만듭니다. 5. var secondelement 변수를 만듭니다. arraycount[1]은 두번째 항목을 가르킵니다. 첫번째항목은 [0]입니다. arraycount.count로 배열 갯수를 확인할 수 있습니다. arraycount.append("three")로 배열값을 추가합니다. arraycount[2]는 세번째 배열값을 확인할 수 있습니다. arraycount.apped("four") 네번째 배열값을 추가합니다. arr..
iOS프로그래밍 Swift 언어 배우기 애플의 Swift 튜토리얼(http://developer.apple.com/swift)에 들어가면 자세한 정보를 얻을수 있습니다. Swift언어 시작하기 1. Xcode를 시작한다. Get started with a playgroud 를 선택한다. iOS의 Blank를 선택한다. var str = "Hello, playground" var는 변수 타입이므로 str의 값을 변경할 수 있다. let은 상수 타입이므로 str2의 값을 변경할 수 없다. 오류메시지 "Cannot assign to value: 'str2' is a 'let' constantvar는 변수 타입let은 상수 타입 더 자세한 정보는 https://swift.org/documentation/#the..