iOS(83)
-
bannaviiOS) Layout Issues: Position and size are ambiguous for WKWebView - maskcheck.
import UIKit import WebKit class ViewController: UIViewController { var webView: WKWebView = WKWebView() override func viewDidLoad() { super.viewDidLoad() self.view.addSubview(webView) webView.translatesAutoresizingMaskIntoConstraints = false webView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive webView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadi..
2022.10.31 -
Support for password authentication was removed on August 13, 2021.
시도들 1. generate new token(Fine-grained tokens) 2. 비번입력할때 깃헙 비번 입력 3. 비번입력할때 generate해서 저장해둔 토큰값 입력 4. change the remote url set 이걸 해줬어야했네 해결완료. https://levelup.gitconnected.com/fix-password-authentication-github-3395e579ce74
2022.10.28 -
The sandbox is not in sync with the Podfile.lock.
https://amajoy.tistory.com/entry/The-sandbox-is-not-in-sync-with-the-Podfilelock-Run-pod-install-or-update-your-CocoaPods-installation
2022.09.14 -
segue의 identifier를 설정해줄 수 없을때(feat. tabbarcontroller로 segue연결할때)
실험1) viewController와 viewController연결해보기 Attributes inspector에서 identifier를 설정해줄 수 있다. 실험2) tabBarController와 viewController연결해보기 Attributes inspector에서 identifier를 설정해줄 수 없다.. tabbarcontroller의 역할 자체가 특정 탭을 클릭하면 어느 viewController로 이동 가능한지 예측이 되기 때문에 그런것 같다.(내생각ㅜㅜ)
2022.03.02 -
present로 띄웠는데 뒷배경이 안나와,, 와이라노 와이라노(feat. UIModalPresentationStyle, 화면띄웠는데 뒷배경이 사라졌을때)
팝업창 뒷부분에 있는 뷰가 알파값을 주어도 투명하게 보이지 않고, 아예 날라가버리는? 현상에 대해 알아보다가 이참에 한번 읽고 정리해보려고 한다 UIModalPresentationStyle fullScreen currentContext overFullScreen overCurrentContext 이 둘의 공통점 fullScreen currentContext 아래에 있었던 뷰 계층을 날려버린다. (투명한 배경 위에 팝업을 띄울건데 그 뒤에있는 뷰들을 날려버릴 것이므로 뒷 배경이 투명하게 비치는것이 아닌 그냥 무(없을무). 일것임) 이 둘의 차이점 fullScreen currentContext fullScreen은 디바이스의 스크린에 대응 하는 스타일 currentContext는 present를 지시하는 뷰..
2022.02.28 -
야 UITapGestureRecognizer 제대로 묻는다(addBtn은 왜 함수 호출하는거야)
@IBOutlet var backViewOfAddBtn: UIView! @IBOutlet weak var addBtn: UIImageView! let tabGestureAdd = UITapGestureRecognizer(target: self, action: #selector(addContent)) backViewOfAddBtn.addGestureRecognizer(tabGestureAdd) backViewOfAddBtn.isUserInteractionEnabled = true @objc func addContent() { if addContentLayout.isHidden { addBtn.image = UIImage(named: "close4.png") addContentLayout.isHidden =..
2022.02.24