いくつかのデータで UITable を作成し、UISwitch を含めましたが、実行時にテーブルに表示されませんでした。
.h で
@interface CalcViewController : UITableViewController {
IBOutlet UITableView *mainTableView;
NSMutableArray *courseMURArray;
NSMutableArray *switchStates;
}
と.mで
- (void)viewDidLoad
{
[super viewDidLoad];
switchStates = [[NSMutableArray alloc] init ];
int i = 0;
for (i = 0; i < 33; i++) {
[switchStates addObject:@"OFF"];
}
}
そして
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
UISwitch *theSwitch = nil;
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
theSwitch = [[UISwitch alloc]initWithFrame:CGRectZero];
theSwitch.tag = 100;
CGRect frame = theSwitch.frame;
frame.origin.x = 230;
frame.origin.y = 8;
theSwitch.frame = frame;
[theSwitch addTarget:self action:@selector(switchChanged:) forControlEvents:UIControlEventValueChanged];
[cell.contentView addSubview:theSwitch];
}else{
theSwitch = [cell.contentView viewWithTag:100];
}
if ([[switchStates objectAtIndex:indexPath.row] isEqualToString:@"ON"]) {
theSwitch.on = YES;
}else{
theSwitch.on = NO;
}
return cell;
}
これがセレクターメソッドです
-(void) switchChanged: (UISwitch *) sender{
UITableViewCell *theParentCell = [[ sender superview] superview];
NSIndexPath * indexPathOfSwitch = [mainTableView indexPathForCell:theParentCell];
if (sender.on) {
[switchStates replaceObjectAtIndex:indexPathOfSwitch.row withObject:@"ON"];
}else{
[switchStates replaceObjectAtIndex:indexPathOfSwitch.row withObject:@"OFF"];
}
}
データはすべて問題ありませんが、何か問題はありますか?