일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- 자바스크립트
- keyframes
- jQuery
- html5
- HTML
- ipad
- 비전공 개발자
- php
- hover
- SWIFT
- front-end
- 애니메이션
- 백엔드
- MAC
- iOS 개발자
- CSS
- iPhone
- effect
- 풀스택
- 비전공자
- 프론트엔드
- css3
- react
- xcode
- Animation
- button
- image
- IOS
- 개발자
- javascript
- Today
- Total
목록Programming (564)
비전공자 개발일기

Remote Notification 전송 방식 Provider(Server) -> APNs -> iOS, watchOS, tvOS, macOS -> ClientApp APNs Apple Push Notification Service (애플 개발자 계정 필요) https://developer.apple.com/kr/ Apple Developer Apple 플랫폼에서 개발할 절호의 기회입니다 developer.apple.com FCM Firebase Cloud Message https://firebase.google.com/ Firebase Firebase는 고품질 앱을 빠르게 개발하고 비즈니스를 성장시키는 데 도움이 되는 Google의 모바일 플랫폼입니다. firebase.google.com // AppD..

1234 5678 9012 3456 Tony Stark 10/19 06/21 :root { font-size: 24px; } body { background: #1488cc; /* fallback for old browsers */ background: linear-gradient(to left, #283593, #1976d2); height: 100vh; font-family: "Josefin Sans", sans-serif; } /* Background circles start */ .circle { position: absolute; border-radius: 50%; background: radial-gradient(#006db3, #29b6f6); } .circles { position: abs..

import Foundation struct Diary { var uuidString: String var title: String var contents: String var date: Date var isStar: Bool } import UIKit class DiaryCell: UICollectionViewCell { @IBOutlet weak var titleLabel: UILabel! @IBOutlet weak var dateLabel: UILabel! required init?(coder: NSCoder) { super.init(coder: coder) contentView.layer.cornerRadius = 3.0 contentView.layer.borderWidth = 1.0 conten..

실제 동작 영상 * { margin: 0; padding: 0; box-sizing: border-box; position: relative; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #111; } .elastic { width: 400px; height: 400px; display: flex; justify-content: center; align-items: flex-end; } .elastic::before { content: ''; position: absolute; bottom: 62.5px; left: 5px; width: 15px; height..

CocoaPods Swift 및 Objective-C Cocoa 프로젝트의 종속성 관리자입니다. 93,000개 이상의 라이브러리가 있으며 300만 개 이상의 앱에서 사용됩니다. CocoaPods를 사용하면 프로젝트를 우아하게 확장할 수 있습니다. https://cocoapods.org/ CocoaPods.org CocoaPods is built with Ruby and is installable with the default Ruby available on macOS. We recommend you use the default ruby. Using the default Ruby install can require you to use sudo when installing gems. Further insta..

위의 에러를 만나게 됬을 경우 현재 사용중인 Xcode의 버전을 확인해볼 필요가 있음 1. 작성자처럼 Xcode 14.x를 사용하고 있을 경우 2. Xcode 13.x 이하를 사용하고 있을 경우 https://stackoverflow.com/questions/68809929/unicode-normalization-not-appropriate-for-ascii-8bit Unicode Normalization not appropriate for ASCII-8BIT 13: from /usr/local/bin/pod:23:in `' 12: from /usr/local/bin/pod:23:in `load' 11: from /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.11.0.beta..

* { padding: 0; margin: 0; box-sizing: border-box; font-family: "Roboto Mono", monospace; } .container { position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; } #battery { box-sizing: content-box; height: 7.8em; width: 17.5em; border: 0.6em solid #246aed; margin: auto; border-radius: 0.6em; position: relative; display: grid; place-items: center; } #battery:before { position:..

https://openweathermap.org/ Сurrent weather and forecast - OpenWeatherMap Access current weather data for any location on Earth including over 200,000 cities! The data is frequently updated based on the global and local weather models, satellites, radars and a vast network of weather stations. how to obtain APIs (subscriptions w openweathermap.org import Foundation struct ErrorMsg: Codable { let..