[iphone] UITableView 셀의 UISwitch

UISwitch에를 삽입하려면 어떻게 UITableView해야합니까? 설정 메뉴에서 예제를 볼 수 있습니다.

내 현재 솔루션 :

UISwitch *mySwitch = [[[UISwitch alloc] init] autorelease];
cell.accessoryView = mySwitch;



답변

일반적으로이를 accessoryView로 설정하는 것이 좋습니다. 당신은 그것을 설정할 수 있습니다 tableView:cellForRowAtIndexPath: 당신은 스위치가 이성을 상실 할 때 뭔가를 대상 / 액션을 사용할 수 있습니다. 이렇게 :

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    switch( [indexPath row] ) {
        case MY_SWITCH_CELL: {
            UITableViewCell *aCell = [tableView dequeueReusableCellWithIdentifier:@"SwitchCell"];
            if( aCell == nil ) {
                aCell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"SwitchCell"] autorelease];
                aCell.textLabel.text = @"I Have A Switch";
                aCell.selectionStyle = UITableViewCellSelectionStyleNone;
                UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectZero];
                aCell.accessoryView = switchView;
                [switchView setOn:NO animated:NO];
                [switchView addTarget:self action:@selector(switchChanged:) forControlEvents:UIControlEventValueChanged];
                [switchView release];
            }
            return aCell;
        }
        break;
    }
    return nil;
}

- (void)switchChanged:(id)sender {
    UISwitch *switchControl = sender;
    NSLog( @"The switch is %@", switchControl.on ? @"ON" : @"OFF" );
}


답변

UISwitch 또는 기타 컨트롤을 셀의 accessoryView. 그렇게하면 아마도 당신이 원하는 셀의 오른쪽에 나타날 것입니다.


답변

if (indexPath.row == 0) {//If you want UISwitch on particular row
    UISwitch *theSwitch = [[UISwitch alloc] initWithFrame:CGRectZero];
    [cell addSubview:theSwitch];
    cell.accessoryView = theSwitch;
}


답변

Interfacebuilder에서 셀을 준비하고 Viewcontroller의 IBOutlet에 연결 한 다음 tableview가 적절한 행을 요청하면 반환 할 수 있습니다.

대신 셀에 대해 별도의 xib를 만들고 (다시 IB와 함께) 셀 생성시 UINib를 사용하여로드 할 수 있습니다.

마지막으로, 프로그래밍 방식으로 스위치를 만들고이를 셀 contentview 또는 accessoryview에 추가 할 수 있습니다.

어떤 것이 당신에게 가장 적합한지는 주로 당신이 무엇을 좋아하는지에 달려 있습니다. tableviews 콘텐츠가 고정되어 있으면 (설정 페이지 등) 처음 두 개가 잘 작동 할 수 있으며 콘텐츠가 동적이면 프로그래밍 방식 솔루션을 선호합니다. 무엇을하고 싶은지 구체적으로 말씀해주세요. 이렇게하면 질문에 더 쉽게 답변 할 수 있습니다.


답변

이것은 뷰 레이어 (UITableViewCell)에서 전원을 끄고 켜는보다 완벽한 솔루션이며 didSelectdidDeselect다음을 통해 tableView 델리게이트에 이벤트를 전달합니다 .

class CustomCell: UITableViewCell {
    private lazy var switchControl: UISwitch = {
        let s = UISwitch()
        s.addTarget(self, action: #selector(switchValueDidChange(_:)), for: .valueChanged)
        return s
    }()

    override func awakeFromNib() {
        self.accessoryView = switchControl
        self.selectionStyle = .none // to show the selection style only on the UISwitch
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
        (self.accessoryView as? UISwitch)?.isOn = selected
    }

    @objc private func switchValueDidChange(_ sender: UISwitch) { // needed to treat switch changes as if the cell was selected/unselected
        guard let tv = self.superview as? UITableView, let ip = tv.indexPath(for: self) else {
            fatalError("Unable to cast self.superview as UITableView or get indexPath")
        }
        setSelected(sender.isOn, animated: true)
        if sender.isOn {
            tv.delegate?.tableView?(tv, didSelectRowAt: ip)
        } else {
            tv.delegate?.tableView?(tv, didDeselectRowAt: ip)
        }
    }
}

그리고 당신의 대리인


func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool {
    return false // to disable interaction since it happens on the switch
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { // to make sure it is rendered correctly when dequeuing:
    // stuff
    if isSelected { // stored value to know if the switch is on or off
        tableView.selectRow(at: indexPath, animated: true, scrollPosition: .none)
    } else {
        tableView.deselectRow(at: indexPath, animated: true)
    }
    // more stuff
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    // do your thing when selecting
}

func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
    // do your thing when deselecting
}


답변

신속한 사용자를위한

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell(style: .default, reuseIdentifier: "TableIdentifer")
        let switch = UISwitch()
        cell.accessoryView = switch
}


답변