일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- developer
- 적절한 사용방법
- WWDC21
- java
- frame이해
- TabBarItems
- native개발
- lazy 사용
- Identity
- 보라색오류
- Your app is missing support for the following URL schemes: your_ios_client_id
- view
- bounds이해
- Structural Identity
- Demystify SwiftUI
- lifecycle
- schemes
- Quick Help
- xml delegate
- consuming a restful web service
- spring guide
- Xcode
- ios
- Spring
- Lifetime of SwiftUI
- swift
- Explict Identity
- ios login
- lazy 위험성
- Lazy
- Today
- Total
목록iOS/Solve_ERROR (5)
Dev_Dylan

스키마 추가하는데 오류나서 쓰는 글 URL Schemes Info.plist에 추가하는 방법 (첫번째 방법) Google Login https://developers.google.com/identity/sign-in/ios/start-integrating?hl=ko iOS 및 macOS용 Google 로그인 시작하기 | Authentication | Google for Developers 이 페이지는 Cloud Translation API를 통해 번역되었습니다. 의견 보내기 iOS 및 macOS용 Google 로그인 시작하기 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. iOS 또 developers.google.com 위 문서대로 Info.plist에 GIDClientI..

URLSession을 사용해서 네트워킹을 할 때 URL로 HTTP 를 사용하게 된다면 아래와 같은 보라색 경고창(오류창)이 나옴 App Transport Security has blocked a cleartext HTTP connection to "ADDRESS" since it is insecure. Use HTTPS instead or add this domain to Exception Domains in your Info.plist. 오류 메세지 그대로 App Transport Security 에서 HTTP 통신을 막았다는 것. - 이는 APPLE에서 iOS9 에 도입된 보안기능. - HTTP 접속을 허용 할 수 있지만 앱 심사 통과가 안될 가능성이 있음. HTTP 가능하도록 설정 변경 1. App..

UIView 혹은 TextFiled등 여러가지를 커스텀으로 구현하다보면 자주 보이는 FatalError는 무엇일까? class CustomTextView: UITextView { override init(frame: CGRect, textContainer: NSTextContainer?) { super.init(frame: frame, textContainer: textContainer) } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } } 일단 Fix 버튼을 클릭하고 Succeeded 되네~ 하고 말았던 기억... fatalError(_:file:line:) Apple공식 문서 Unconditi..

ViewController에 버튼을 추가해서 배열에 담기 최초 StoryBoard 에서도 혹은, 코드로 UIButton을 선언해도 같은 오류가 난다. Cannot use instance member 'button' within property initializer; property initializers run before 'self' is available 오류 코드에 보면 [인스턴스 맴버인 버튼을 초기화 없이 사용 할 수 없다] 라고 나온다. Lazy 키워드로 해결 buttons 배열에 lazy를 사용해서 ERROR를 해결한다. lazy키워드를 이용해 동시에 호출되는 것을 방지한다. 즉, 각각의 button1,button2,button3 와 이를 포함하는 [buttons] 배열을 동시에 호출되지 않도..

PickerView를 사용 할 때 DataSource에 titleForRow 메서드를 사용해 각 Row에 string값을 뿌려준다. 잘 뿌려 주었는데도 불구하고 이렇게 픽커뷰에 오류가났다. 원인은 오타.... 오류 메세지도 뜨지 않기 떄문에 알수가없는데.... forComponent 여야 할부분에 오타가 저렇게 생겨버렸기 때문... ㅠ titleForRow 에 다 잘 넣어주었으나 위의 사진처럼 물음표가 뜬다면 가장먼저 오타를 의심해보자 ..!