iOS/iOS memo(27)
-
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 -
imageView나 button의 터치영역 넓히기
https://stackoverflow.com/questions/31056703/how-can-i-increase-the-tap-area-for-uibutton How can I increase the Tap Area for UIButton? I use UIButton with auto layout. When images are small the tap area is also small. I could imagine several approaches to fix this: increase the image size, i.e., place a transparent area around the stackoverflow.com https://stackoverflow.com/questions/11875161/h..
2022.02.23 -
tabbarcontroller에서 segue연결 해제 후, 다시 segue연결을 하려고 할때 주의할점(feat. tabbar 추가)
just 참고) NSRangeException index 4 beyond bounds [0 .. 3] - Stack ...~~~~ 4번째 탭과 뷰컨의 연결을 끊어준뒤 빌드했을때 이런 에러가 났었다. 본론 Main스토리보드에서 4번째 tab과 어떤VC와 연결된 segue를 delete로 날려버리고, 앗 실수, 다시 연결할뤠,,,, 했더니 (연결은 잘 됐음) 4번째 탭에서 원래 보여지던 화면이 아닌 다른 화면이 보여짐(5번째 탭에 있던 화면이 4번째 탭화면을 탭했을때 보여짐) 엥. 알고보니 탭바뷰컨트롤러를 다른 뷰컨에 segue로 연결할때 순차적으로 연결이 되는데 이런식으로 연결되었던 특정 segue의 연결을 해지하게 되면,(예를들어 4번째탭의 segue연결을 해지하게되면) 5개였던 탭바가 4개로 바뀌게 되..
2022.02.23