We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GithubSearchViewController+Extension
dequeueReusableCell
cellForRowAt
cell.configure(user)
appenddisplaySearchUsersItems
willDisplayCell
ExtesnionControl
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GithubSearchViewController+Extension
이름은 적절하지 않은 것 같아요. Extension을 파일로 분리하고 싶다면 각 기능별로 이름이 명확하게 해주세요dequeueReusableCell
force casting 하는 부분을 추상화 해주세요cellForRowAt
에서 out of range 발생을 예방해주세요cellForRowAt
에서의 구문을 줄여주세요 (cell.configure(user)
형태를 사용하세요)appenddisplaySearchUsersItems
를 따로 들고 있지 말고appenddisplaySearchUsersItems
함수 사용시 넘겨주세요 => 전반적인 모델 배열 사용을 줄여주세요willDisplayCell
에서 loadmore를 하게 되면 중복호출될 위험이 있습니다. 해당 부분을 해결해주세요ExtesnionControl
네이밍은 좋지 않습니다.The text was updated successfully, but these errors were encountered: