TableView Cell에 체크 마크 등을 표시 (.accessoryType)
5350 단어 Swift
이번 내용
.accessoryType
를 사용하여 TableView 셀에 체크 표시 등을 표시합니다. 코드와 간략한 설명
.accessoryType = .checkmark
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}
안에서 indexPath에서 탭된 셀을 가져옵니다. cell?.accessoryType = .checkmark
에서 탭한 셀에 체크 표시를 표시합니다. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
cell?.accessoryType = .checkmark //チェックマーク
}
.accessoryType = .detailButton
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
cell?.accessoryType = .detailButton
}
.accessoryType = .disclosureIndicator
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
cell?.accessoryType = .disclosureIndicator
}
.accessoryType = .detailDisclosureButton
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
cell?.accessoryType = .detailDisclosureButton
}
끝
지적, 질문 등 있으면, 코멘트까지 부탁드립니다.
Reference
이 문제에 관하여(TableView Cell에 체크 마크 등을 표시 (.accessoryType)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/HiroUrata/items/6def112de455baf24f66
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(TableView Cell에 체크 마크 등을 표시 (.accessoryType)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/HiroUrata/items/6def112de455baf24f66텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)