DisclosureIndicator未显示

时间:2014-10-01 09:55:39

标签: ios iphone uitableview swift

我已经创建了一个UITableView并使用了标准的UITableViewCell并添加了一个accessoryType,但无论我做什么似乎都没有出现。那怎么样?这是我的代码:

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {

    switch indexPath.row
        {

    case 0:
        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell

        cell.textLabel?.text = "Kontakt os"
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

        return cell


    case 1:
        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell

        cell.textLabel?.text = "Privatpolitik"
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

        return cell

    case 2:

        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell

        cell.textLabel?.text = "Vilkår"
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

        return cell

    default:
        println()
        }




    return nil
}

enter image description here

0 个答案:

没有答案