码迷,mamicode.com
首页 > 其他好文 > 详细

在tableviewcell里面嵌入switch控件以及如何获取switch控件数据

时间:2015-09-18 15:30:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

主要是通过cell.accessoryView来添加switch控件
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


static NSString *CellIdentifier = @"Cell";


UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    //add a switch
    UISwitch *switchview = [[UISwitch alloc] initWithFrame:CGRectZero];
[switchview addTarget:self action:@selector(updateSwitchAtIndexPath:) forControlEvents:UIControlEventValueChanged];
    cell.accessoryView = switchview;
    [switchview release];
}


cell.textLabel.text = [NSString stringWithFormat:@"%d", indexPath.row];


return cell;
}


.h文件中添加:
- (IBAction) updateSwitchAtIndexPath:(id) sender;


获取switch数据:
- (IBAction)updateSwitchAtIndexPath:(id)sender {
    
    
    UISwitch *switchView = (UISwitch *)sender;
    
    if ([switchView isOn]) 
{
       //do something..     

else 
{
    //do something   


    }
    
}

 

在tableviewcell里面嵌入switch控件以及如何获取switch控件数据

标签:

原文地址:http://www.cnblogs.com/-yun/p/4819159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!