You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
delegate 역할, dataSource 역할에 따른 네이밍 규칙을 명시해주면 좋을 것 같습니다.
e.g., When naming the data source method, please make sure that the second parameter name ends in a noun form. For example, when the data source method returns the number of rows in the specific section, you should name it like tableView(_:numberOfRowsInSection:) -> This allows you to infer what value the method returns.
e.g., When naming the data source method, please make sure that the second parameter name ends in a verb form. For example, myTableView(_:didTapCell:forRowAt:), myTableView(_:willDisplayCell:forRowAt:)
The text was updated successfully, but these errors were encountered:
이슈 중복 확인
확인했습니다
카테고리
델리게이트
delegate 역할, dataSource 역할에 따른 네이밍 규칙을 명시해주면 좋을 것 같습니다.
e.g., When naming the data source method, please make sure that the second parameter name ends in a noun form. For example, when the data source method returns the number of rows in the specific section, you should name it like
tableView(_:numberOfRowsInSection:)
-> This allows you to infer what value the method returns.e.g., When naming the data source method, please make sure that the second parameter name ends in a verb form. For example,
myTableView(_:didTapCell:forRowAt:)
,myTableView(_:willDisplayCell:forRowAt:)
The text was updated successfully, but these errors were encountered: