Total(371)
-
테이블 태그 자동 줄바꿈
Looooooooooooooooooooooong
2016.05.24 -
itunes 백업 파일 찾기
https://support.apple.com/ko-kr/HT204215 1. 설정Windows : 편집 > 기본 설정Mac : iTunes > 환경 설정 2. 장비 클릭 3. 삭제할 수 있다. Windows : \Users\(사용자 이름)\AppData\Roaming\Apple Computer\MobileSync\Backup\에서 장비 백업 찾기mac : ~/라이브러리/Application Support/MobileSync/Backup/
2016.05.17 -
후이즈에서 호스팅 추가
* 티스토리 url에 연결 시킬 예정 1.내 도메인 자산 관리2.도메인 클릭 후 네임서버변경 메뉴3.(좌측메뉴)네임서버 고급설정4.도메인 선택 후 네임서버 고급 선택5.A레코드관리(네임서버 호스팅) - 관리화면 열기6.신청/변경/해지 선택 , 호스트명 , IP주소(DNS) 신청(호스트명은 DNS호스트 관리에서 추가할 수 있다.) 티스토리는 설정-기본정보에서 2차도메인으로 설정.
2016.05.16 -
will be removed in Swift 3
Swift2.0 Swift3.0 typealias UnderlyingType = Void associatedtype UnderlyingType = Void @warn_unused_result func infix(lhs: Expressible, _ rhs: Expressible, wrap: Bool = true, function: String = __FUNCTION__) -> Expression { return function.infix(lhs, rhs, wrap: wrap) } @warn_unused_result func infix(lhs: Expressible, _ rhs: Expressible, wrap: Bool = true, function: String = #function) -> Express..
2016.03.22 -
해당 프로젝트에서 cocoapods 삭제 방법
http://stackoverflow.com/questions/16427421/how-to-remove-cocoapods-from-a-projectDelete the standalone files (Podfile Podfile.lock and your Pods directory)Delete the generated xcworkspaceOpen your xcodeproj file, delete the references to Pods.xcconfig and libPods.a (in the Frameworks group)Under your Build Phases delete the Copy Pods Resources, Embed Pods Frameworks andCheck Pods Manifest.lock ..
2016.03.18 -
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