iOS/iOS Swift Udemy - AngelaYu

디버깅 5단계

Developer-Michelle 2022. 10. 24. 22:12

1. What did you expect your code to do?

코드가 무엇을 하기를 기대했는가?

 

ex) 1초마다 eggTimer progress bar가 1칸씩 움직여서 꽉 채워지길 바람

 

2. What happened instead?

그 대신에 무슨 일이 일어났는가?

 

ex) 0으로 가버림

 

3. What does your expectation depend upon?

당신의 기대는 실제로 무엇에 달려있습니까?

 

ex) 나눈 값이 십진수이어야.

 

4. How can we test the things our expectations depend on?

우리의 기대가 의존하는 것들을 어떻게 테스트할 수 있는가?

 

print문 찍어보기

 

5. Fix our code to make reality match expectations.

현실이 기대와 일치하도록 코드를 수정.