Як я можу вставити a UISwitch
на UITableView
комірку? Приклади можна переглянути в меню налаштувань.
Моє поточне рішення:
UISwitch *mySwitch = [[[UISwitch alloc] init] autorelease];
cell.accessoryView = mySwitch;
Як я можу вставити a 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" );
}
switchView.tag = indexPath.row
для виявлення, який перемикач рядків Змінено на швидкий
if (indexPath.row == 0) {//If you want UISwitch on particular row
UISwitch *theSwitch = [[UISwitch alloc] initWithFrame:CGRectZero];
[cell addSubview:theSwitch];
cell.accessoryView = theSwitch;
}
initWithFrame
? Чому ви використовуєте addSubview
? switch
не може використовуватися як ім'я змінної.
Ви можете підготувати комірку в Interfacebuilder, зв’язати її з IBOutlet вашого Viewcontroller і повернути її, коли табличне подання запитує правильний рядок.
Натомість ви можете створити окремий xib для комірки (знову ж із IB) і завантажити його за допомогою UINib при створенні комірок.
Нарешті, ви можете створити перемикач програмно і додати його до перегляду вмісту комірок або перегляду аксесуарів.
Який з них вам найбільше підходить, багато в чому залежить від того, що ви любите робити. Якщо вміст ваших переглядів таблиць виправлений (для сторінки налаштувань тощо), перші два можуть добре працювати, якщо вміст динамічний, я віддаю перевагу програмному рішенню. Будь ласка, будьте більш конкретні у тому, що ви хотіли б зробити, це полегшить відповідь на ваше запитання.
Це більш повне рішення, коли вимикання та ввімкнення відбувається на рівні представлення (UITableViewCell), і воно пересилає події до делегата tableView через didSelect
і didDeselect
:
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
}