엑스코드 (Xcode) - Colors (SDK, Crayons) iPhone SDK, iPad SDK darkTextColor 0, 0, 0 #000000 groupTableViewBackgroundColor 235, 235, 241 #EBEBF1 lightTextColor 235, 255, 255, 0.6 #FFFFFF scrollViewTexturedBackgroundColor 92, 94, 102 #5C5E66 tableCellGroupedBackgroundColor 235, 255, 255 #FFFFFF viewFlipsideBackgroundColor 24, 25, 27 #18191B blackColor 0, 0, 0 #000000 darkGrayColor 67, 67, 67 #434343 lightGrayColor 154, 154, 154 #9A9A9A w.. 참조(Reference)/색상(Color) 2018. 12. 27. 04:33 반응형 스킨 만들기 + 미디어 쿼리 기본 설정 html CSS body { -webkit-text-size-adjust: 100%; } 반응형 웹에서 핵심이라고 할 수 있는.. 미디어 쿼리 입니다. 보통 PC + Mobile 이나, PC + Tablet + Mobile 으로 사용을 많이 하시죠.. 그런데 웹사이트 제작자에 따라 미디어 쿼리 해상도는 천차만별입니다. 요즘은 다양한 기기들이 늘어나기도 하고요.. 일단 아이폰의 해상도를 알아보고.. 저만의 쿼리 해상도를 정해 보려고 합니다. 아이폰 해상도 기기해상도 iPhone SE1136 x 640 (568 x 320) iPhone 6(s), 7, 81334 x 750 (667 x 375) iPhone 6(s), 7, 8 Plus1920 x 1080 (960 x 540) iPhone XR179.. 티스토리(Tistory)/Miracle Skin 2018. 12. 22. 21:51 [Swift 4] 문자열 (String) - 길이 (Length) 문자열 길이 (Length) Swift 4 let str = "hello" str.count // -> 5 엑스코드(Xcode)/Swift 4 2018. 12. 22. 21:44 [Swift 4] Action Sheet - UIAlertController OK + Cancel Swift 4 func actionSheet() { let sheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) let action = UIAlertAction(title: "OK", style: .default) { (action) in // Action Code } sheet.addAction(action) let cancel = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) sheet.addAction(cancel) present(sheet, animated: true, completion: nil) } Title + mes.. 엑스코드(Xcode)/Swift 4 2018. 12. 20. 00:12 [Swift 4] 경고창 (Alert) - UIAlertController UIAlertController - Apple Developer Documentation Swift // MARK: UIAlertController - Apple Developer Documentation let alert = UIAlertController(title: "My Alert", message: "This is an alert.", preferredStyle: .alert) alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "Default action"), style: .default, handler: { _ in NSLog("The \"OK\" alert occured.") })) self.present(alert,.. 엑스코드(Xcode)/Swift 4 2018. 12. 19. 23:14 [Swift 4] 키보드 내리기 (hideKeyboard) - dismissKeyboard TextField 이외에 부분에 Tap하면, 키보드 내리기. ViewContoller.swift (Swift 4) class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.hideKeyboard() // 엑스코드(Xcode)/Swift 4 2018. 12. 2. 18:14 델파이(Delphi) 10.3 Community Edition 설치 https://www.embarcadero.com/products/delphi/starter 오랜만에 뭐좀 만들어 볼까 하고.. 델파이를 찾았는데... 컴퓨터에 안깔려 있어서.. 새로 받게 되었습니다. RAD Studio 10.3 이름은 Rio 인가 보네요.. 10.2는 Tokyo 였었고.. 10.1은 기억이 안나네요.. Delphi 10.3 Trial 버전으로 체험해 볼 수도 있지만, 저는 Community Edition으로 선택 했습니다. 10.2에서는 Starter 라고해서.. 64bit 컴파일 안되고. iOS나 Android 같은 모바일 컴파일 안되게 했었는데... 설치하는데 이것저것 다 되게 했더라고요.. 정식이랑 차이점은.. 차차 알게 되겠죠..^^ 사이트 주소에는 아직 starter로 표시되.. 델파이(Delphi) 2018. 11. 25. 23:50 티스토리(Tistory) 스킨 기본 구조(Basic Structure) - skin.html 티스토리를 새로 시작하면서 스킨도 새로 만들어야 겠다고 생각이 들어서 티스토리 스킨 제작에 들어갔습니다. 예전에도 몇 번 만들려다가 그냥 만 적이 있었는데, 이번에는 쉽게 만들 수 있을꺼 같습니다. ^^ 예전 티스토리 스킨 가이드에서는 티스토리 스킨의 구조(structure)가 너무 심할 정도로 자세하게 나와 있었는데요.... 중간에 추가된 기능의 설명도 없었고요... 스킨 만들려고 다시 찾아보니.. 찾을 수가 없네요 ㅠㅠ 새로운 티스토리 스킨 가이드는 너무 단순화 해 버렸네요 ㅠㅠ 정확히 언제 생긴건지는 모르겠지만 새로 생긴 cover 기능 설명도 있긴 한데.. 너무 어렵게 적어 놨어요... 그냥 Tistory에서 제공해 주는 스킨 받아서 뜯어 보는게 제일 편하더라구요... Cover 적용된 스킨들 보.. 티스토리(Tistory)/Miracle Skin 2018. 11. 21. 02:03