Programming/Swift(94)
-
swift 입문 소스
// playground 에서 아래 소스를 실행해 보자.1.//: Playground - noun: a place where people can playimport UIKit class ExamClass { deinit { print("deinit") }} 2.import UIKit var exam: ExamClass? = ExamClass()exam = nil for i in 0...10 { i * i} 3.import UIKitimport XCPlayground let circleRect = CGRectMake(0,0,300,300)class CircleView: UIView { override func drawRect(rect: CGRect) { let context:CGContextRef = UI..
2015.11.26 -
시뮬레이션 할 때 키보드가 보이지 않는다?
제목 그대로, 시뮬레이션 할 때 키보드가 보여지지 않는 경우는 시뮬레이터 화면을 클릭하고 상단 메뉴에 Hardware 가 있다.Keyboard의 Toggle Software Keyboard 선택하면 된다. Hardware - Keyboard - Toggle Software Keyboard
2015.11.25 -
libc++abi.dylib terminating with uncaught exception of type nsexception (lldb)
버튼 삭제 후 에러 발생.libc++abi.dylib terminating with uncaught exception of type nsexception (lldb) http://stackoverflow.com/questions/26442414/libcabi-dylib-terminating-with-uncaught-exception-of-type-nsexception-lldb
2015.11.23 -
senchaTouch Download
* https://www.sencha.com/products/touch/download/ * 요청 이미지(이메일로 요청하여 다운로드 받을 수 있음.) * 요청한 이메일로 다운로드 URL을 보내줌.
2015.10.19