일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- php
- MAC
- Animation
- iOS 개발자
- 비전공자
- 백엔드
- HTML
- xcode
- 애니메이션
- jQuery
- 풀스택
- keyframes
- iPhone
- html5
- 자바스크립트
- front-end
- css3
- 비전공 개발자
- javascript
- effect
- 프론트엔드
- image
- button
- 개발자
- hover
- react
- SWIFT
- IOS
- ipad
- CSS
- Today
- Total
목록xcode (22)
비전공자 개발일기
Xcode를 14.3으로 업데이트한 이후, 제작하고 있는 어플을 테스트하기 위해 archive를 했으나 아래의 에러가 발생 rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/co m.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9] 구글링을 통해서 알게된 내용 https://developer.apple.com/forums/thread/727525 Cocoapod에 문제가 있다.. 해결방법 Pods-APPNAME-frameworks.sh의 코드..
rm -rf ~/Library/Developer/Xcode/DerivedData
프로젝트 제작을 위해 기능별로 나눠둔 부분들을 하나로 합치던 과정에서 생긴 에러 Thread 1: "Invalid parameter not satisfying: !stayUp || CLClientIsBackgroundable(internal->fClient) || _CFMZEnabled()" 원인 1. Capability - Background mode가 없었던 것 2. Background mode 추가 후 Location updates를 체크하지 않았던 것 해결 1. Capability - Background mode를 추가 2. Background mode 추가 후 Location updates를 체크
import UIKit import WebKit class ViewController: UIViewController, WKNavigationDelegate { override func viewDidLoad() { super.viewDidLoad() view.addSubview(webView) NSLayoutConstraint.activate([ webView.leadingAnchor.constraint(equalTo: view.leadingAnchor), webView.trailingAnchor.constraint(equalTo: view.trailingAnchor), webView.bottomAnchor.constraint(equalTo: view.layoutMarginsGuide.bottomAnch..
import UIKit class ViewController: UIViewController { @IBOutlet weak var kanji: UILabel! var kanjiList = ["羽", "矢", "才", "台", "切", "話", "主", "君", "対"] var num = Int.random(in: 0...9) override func viewDidLoad() { super.viewDidLoad() kanji.text = kanjiList[num] } @IBAction func changeBTN(_ sender: UIButton) { num = Int.random(in: 0..
// AppDelegate import UIKit import Firebase @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { FirebaseApp.configure() return true } // MARK: UISceneSession Lifecycle func application(_ application: UIApplication, configurationForConnecting conn..
Xcode version 14.2 clipToBounds 선언 후 True로 셋팅 layer.cornerRadius 선언 후 원하는 값으로 셋팅 border와 관련된 것을 Storyboard로 진행할 경우 해당 부분에서 선언 후 값을 설정하면 코드로 작성하는 것과 동일한 결과를 얻을 수 있음
직면한 에러 Initializer for conditional binding must have Optional type, not 'OOO' (번역) 조건부 바인딩의 이니셜라이저에는 옵션 유형이 있어야 합니다 해결 방안 습관적으로 guard let으로 optional을 unwrapping 하는데 이 과정이 필요없을 경우에는 바로 사용해도 문제 없음