Programming/Swift(93)
-
SQLite 쿼리 실행
/*SQLite*///로컬에서 데이터 저장경로//let db = try Connection("/Users/goodgods/Documents/development/MyApp/db.sqlite3") // Get document directory path from your phone -> 모바일에서 경로찾아 저장함let path = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as Stringdo { let db = try Connection("\(path)/db.sqlite3") let users = Table("users") let id = Expression("id") try db.run(users.cr..
2016.03.16 -
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 -
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