UISwitch в ячейке UITableView


как я могу вставить UISwitch на UITableView ячейки? Примеры можно посмотреть в меню настроек.

мое текущее решение:

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

5 ответов:

установка его в качестве 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, связать ее с IBOutlet вашего Viewcontroller и вернуть его, когда tableview запрашивает правильную строку.

вместо этого вы можете создать отдельный xib для ячейки (снова с IB) и загрузить его с помощью UINib при создании ячеек.

наконец, вы можете создать коммутатор программно и добавить его в свои ячейки contentview или accessoryview.

какой из них подходит вам лучше всего во многом зависит от того, что вы люблю делать. Если ваш контент tableviews фиксирован (для страницы настроек и т. д.) первые два могут работать хорошо, если контент динамический, я бы предпочел программное решение. Пожалуйста, будьте более конкретны в том, что вы хотели бы сделать, это облегчит ответ на ваш вопрос.

для пользователей swift

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