Swift3에서 테이블에 ">"(오른쪽 화살표) 아이콘을 붙입니다.

3003 단어 XcodeiOSSwiftSwift3.0

Swift3에서 테이블에 ">"(오른쪽 화살표) 아이콘을 붙입니다.



이번 목표



표 셀에 '>' 액세서리 표시



개발 환경


  • Xcode: 8.2.1
  • 언어: Swift 3
  • OS: MacOS

  • 아이콘 표시 방법



    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 )등도 설정할 수 있다

    좋은 웹페이지 즐겨찾기