Swift3에서 테이블에 ">"(오른쪽 화살표) 아이콘을 붙입니다.
Swift3에서 테이블에 ">"(오른쪽 화살표) 아이콘을 붙입니다.
이번 목표
표 셀에 '>' 액세서리 표시
개발 환경
아이콘 표시 방법
Storyboard에서 미리 TableView를 만들고 Cell에 Identifier (이번에는 "Cells")를 부여합니다.
그 셀을 지정하는 형태로 아래의 코드를 구현합니다.
UITableviewCell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
샘플 코드
ViewController.swift
let display:Array = ["cell1", "cell2", "cell3"]
// Cellの値を設定
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cells", for: indexPath) // Storyboard上のテーブルセルのIdentifierと一致
cell.textLabel!.text = display[indexPath.row]
cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator // ここで「>」ボタンを設定
return cell
}
비고
UITableViewCellAccessoryType.disclosureIndicator
를 지정할 때 disclosureIndicator
이외의 종류로서 체크 마크( checkmark
)나 상세(인포메이션) 마크( detailButton
)등도 설정할 수 있다
Reference
이 문제에 관하여(Swift3에서 테이블에 ">"(오른쪽 화살표) 아이콘을 붙입니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/suzuki_y/items/f4d3d4f8119e556b5ec0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)