UISwitch
セルにUITableView
を埋め込むにはどうすればよいですか?設定メニューで例を見ることができます。
私の現在のソリューション:
UISwitch *mySwitch = [[[UISwitch alloc] init] autorelease];
cell.accessoryView = mySwitch;
通常、accessoryViewとして設定します。 tableView:cellForRowAtIndexPath:
で設定できます。スイッチを切り替えたときに何かをするためにtarget/actionを使用できます。そのようです:
- (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を使用してロードします。
最後に、プログラムでスイッチを作成し、セルのコンテンツビューまたはアクセサリビューに追加できます。
どちらがあなたにぴったりかは、あなたが何をしたいかによって大きく異なります。テーブルビューのコンテンツが固定されている場合(設定ページなど)、最初の2つはうまく機能する可能性があります。コンテンツが動的な場合は、プログラムによる解決策をお勧めします。あなたがしたいことをより具体的にしてください、これはあなたの質問に答えるのをより簡単にするでしょう。
for Swift users
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .default, reuseIdentifier: "TableIdentifer")
let switch = UISwitch()
cell.accessoryView = switch
}