전체 글(371)
-
application 이름 변경
Info.plist 아래와 같이 추가 해준다.
2016.03.16 -
iOS 동영상 강좌
독학을 하면서 굉장히 많은 도움을 준 사이트 들이다. 1.Case Insensitive Search with Swift, PHP and MySQL http://swiftdeveloperblog.com/case-insensitive-search-with-swift-php-and-mysql/ 2.User login and RegisterSign up on example using Swift http://swiftdeveloperblog.com/user-login-and-registration-swift-tutorial/ http://swiftdeveloperblog.com/store-user-information-in-mysql-database/ https://www.youtube.com/watch?v=xw..
2016.02.24 -
textarea
시작 커서가 계속 공백이 생긴다. Conentes 아래와같이 전부 붙여쓰면 공백이 사라진다. Conentes
2016.02.03 -
appstore에서 xcode가 다운로드 되지 않을때
apple Developer 사이트에서 개발자 로그인 후에 다운로드한다. apple developer
2016.01.08 -
살짝 다른 문법(?)
- ERROR 관련(?) 은 swift 2.0부터 syntax 가 바뀜 * oldvar err: NSError?var myJSON = NSJSONSerialization.JSONObjectWithData(data, options: .MutableLeaves, error:&err) as? NSDictionaryif let parseJSON =myJSON {// Now we can access value of First Name by its keyvar firstNameValue = parseJSON[“firstName”] as? Stringprintln(“firstNameValue: \(firstNameValue)”)} * new(swift 2.0)do { if let parseJSON = try NSJS..
2015.12.30 -
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