iOS(83)
-
Invalid update: invalid number of items on UICollectionView
2022-01-24 15:00:51.233491+0900 PhotoFetch[32459:1735764] [UICollectionView] Performing reloadData as a fallback — Invalid update: invalid number of items in section 0. The number of items contained in an existing section after the update (1) must be equal to the number of items contained in that section before the update (6), plus or minus the number of items inserted or deleted from that secti..
2022.01.24 -
iOS) git과 github "잘" 사용하기(feat. Source tree)
인프런의 깃, 깃헙 강의를 보고 작성된 포스팅입니다. git 형상관리 시스템의 한 종류로, 언제든지 저장 시점으로 돌아갈 수 있다는 장점이 있다 github저장소 이용시 가장 기본이 되는 개념 세가지 commit 게임 세이브에 해당하는 행동 언제든지 커밋한 시점으로 되돌아갈 수 있음 저장을 원하는 파일들을 묶어서 커밋 명령을 수행하면된다 add(스테이지에 올린다) 위에서 커밋전에 저장을 원하는 파일들을 묶어서 해야한다라고 표현했는데 이 작업을 스테이지에 파일을 올린다 라고 합니다. (10개의 파일을 작업했는데 1번과 5번의 작업만 묶어서 커밋하고 싶다고 했을때, 1번과 5번을 스테이지에 올립니다. 그럼 이제 commit할 수 있는 상황이 됩니다-> stage에 파일을 올려야 그 파일들을 commit할 ..
2022.01.20 -
iOS) HTTP에 대해서
HTTP 프로토콜 특징 HTTP 프로토콜은 상태가 없는(stateless) 프로토콜입니다. 여기서 상태가 없다라는 말은 데이터를 주고 받기 위한 각각의 데이터 요청이 서로 독립적으로 관리가 된다는 말입니다. 좀 더 쉽게 말해서 이전 데이터 요청과 다음 데이터 요청이 서로 관련이 없다는 말. 이러한 특징 덕택에 서버는 세션과 같은 별도의 추가 정보를 관리하지 않아도 되고, 다수의 요청 처리 및 서버의 부하를 줄일 수 있는 성능 상의 이점이 생깁니다. HTTP 프로토콜은 일반적으로 TCP/IP 통신 위에서 동작하며 기본 포트는 80번. client와 server의 관계라고 볼 수 있음 URL Client가 서버에 자원을 요청하기 위해 입력하는 영문 주소 이 URL을 이용하면 서버에 특정 데이터를 요청할 수 ..
2022.01.19 -
M1노트북에서는 simulator로 실행이 안되나요?
https://stackoverflow.com/questions/65717863/xcode-m1-run-designed-for-iphone Xcode M1: Run Designed for iPhone Hello fellow [iOS] Developers! I've just got my M1 MacBook Pro and been loving how we can test our Apps without even using our mobile devices (props to Apple!!) So far, I was able to test the app stackoverflow.com
2022.01.18 -
Undefined symbol: _OBJC_CLASS_$_NMFPolygonOverlay 어쩌구 에러로 고통받을때
http://susemi99.kr/6178/ NaverMap iOS SDK 빌드 오류 – 쎄미 susemi99.kr https://xodhks0113.blogspot.com/2019/07/git-lfs.html git-lfs 설정하기 iOS 개발 및 일상에 대한 블로그 입니다. xodhks0113.blogspot.com https://branched-wolverine-c06.notion.site/2022-01-18-NMPolygonOverlay-3e39c1348e3347ab911760e927b76d72 2022.01.18 NMPolygonOverlay~와 같은 오류 발생했을때 step1) 에러 발견 branched-wolverine-c06.notion.site
2022.01.18 -
m1 맥북 Executable Not Found ,Xcode 에러로 고통받고있다면..!
https://developer.apple.com/forums/thread/697559 Executable Not Found ,Xcode | Apple Developer Forums Ah, that’s unfortunate that clearing build artifacts didn’t resolve the issue. Which Xcode version are you using? This could also be a bug in Xcode, so it might be worth filing a bug report on Feedback assistant. developer.apple.com
2022.01.17