전체 글 88

[패스트캠퍼스 수강 후기] IOS개발강의 100% 환급 챌린지 1회차 미션

맥북도 구비했겠다 뽕 뽑으려 시작한 IOS개발 공부. 이왕 하는거 돈 들여서 질 좋은 강의 쭉 따라가는 게 좋겠다 싶어서 온라인 강의를 알아보던 중 패스트캠퍼스의 강의를 찾게 되었다 (사실 광고가 엄청 뜨더라) SW개발을 시작하며 절실히 느낀 것은 '컴퓨터로 할 수 있는 건 컴퓨터에서 배울 수 있다.'는 것이다. 개발하다 막히는게 있으면 검색하면 다 나온다. 그런데 워낙에 정보가 많아지다 보니 내게 필요한 것을 골라 찾는 것도 꽤나 골치 아픈 일이 되었다. 그럴 때 하나부터 열까지 제작부터 배포까지 알려주는 강의가 있어서 그대로 따라가기만 하면 되는 게 참 편하다. 그래서 인강을 선택하게 되었다. 수험생시절 버릇을 못 버렸는지 인강만 들으면 마음이 편해진다. 그와 동시에 무언가를 새롭게 배우는 것 또한 ..

iOS) DTDeviceKit: deviceType from [divice id] was NULL

xcode에서 workspace를 빌드해보면 다음과 같은 에러가 떠있다. 'protobuf/Any.pbobjc.b' file not found ios pods 폴더 삭제 ios build 폴더 삭제 cd ios && pod install pod update xcode에서 다시 한 번 빌드 해보면 이런 에러가 뜬다. 'UIkit/UIKIt.h' file not found code로 앱을 빌드하던 중 발생한 에러 예상치도 못했지만 고작 오타때문에 발생한 에러이다 -_- 대문자 I를 i로 바꿔주도록 하자 #import #import 코드 에디터에서 빌드할 때 뜨는 에러는 다음과 같다. 프로비저닝 프로파일을 찾지 못한다나 뭐라나 error: No profiles for '---------' were found:..

개발 에러 2020.07.29

findIndex를 이용하여 object array내 원소 위치 탐색하기

_findNoticeOrder = () => { const notices = this.props.notices let order = notices.findIndex( notice => notice.id === this.state.noticeId ) console.log(this.state.noticeId) return order } Get the index of the object inside an array, matching a condition I have an array like this: [{prop1:"abc",prop2:"qwe"},{prop1:"bnmb",prop2:"yutu"},{prop1:"zxvz",prop2:"qwrq"},...] How can I get the index of the..

함수형 컴포넌트 생성과 props로 함수 파라미터 넘기기

const Question = (props) => { const search = props.data.filter( (qna) => { return qna.question.indexOf(props.keyword) > -1; } ) console.log(search) return ( item.id.toString()} /> ) } class CustomerHelp extends Component { constructor(props) { super(props) this.state = { faqs: [], selectedCategoryIndex: 0, activeSections: [], keyword:'', } } _renderHeader=()=>{} _renderContent=()=>{} _updateSect..