tableView中插入switch控件

 UISwitch *switchy = [[UISwitch alloc] init];
        [switchy addTarget:self action:@selector(switchChange:) forControlEvents:UIControlEventValueChanged];
        cell.accessoryView = switchy;

        [switchy release];

其他控件的添加同理。

你可能感兴趣的:(action)