라벨이 Xcode인 게시물 표시

[Xcode]Thread 1: breakpoint 1.1 (1) 에러

  CMD+7 누르고 좌측에 생긴 모든 breakpoint들을 삭제해주면 된다. 코드 작성 중에 실수로 더블클릭하거나 체크를 해줘서 breakpoint가 생겨서, 코드를 실행했을때 "Thread1:breakpoint1.1(1)" 에러가 뜨면서 실행되지 않는 현상이 나타난다. 코딩창의 숫자부분에 파란색 표시가 뜨는데, 플래그 버튼을 선택 해제하면 파란색이 없어지면서 해결된다. Press CMD+7 and delete all breakpoints on the left.  While writing the code, a breakpoint was created by accidentally double-clicking or checking the code, and when the code was executed, a "Thread1:breakpoint1.1(1)" error appeared and it did not run. A blue mark appears on the number part of the coding window, but the blue color disappears when the flag button is deselected.

[Xcode]unrecognized selector sent to instance "******" 에러 대처법

이미지
  xcode 오른쪽 상단의 connections inspector 에서 문제가 되는 부분의 연결을 끊었다가 다시 연결해본다. 코드 작성 중에 변수명을 변경한 경우에는 연결을 해제했다가 다시 연결해야 위의 에러가 나오지 않는다. In the connections inspector at the top right of xcode, disconnect the problem part and reconnect. If the variable name is changed while writing the code, the above error does not appear until the connection is disconnected and then reconnected.