专注iOS开发(OC/Swift)

自定义辅助视图accessoryview

2018-08-14  本文已影响15人  洲洲哥

本文首发地址

效果图

效果图

实现代码如下

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.mydata.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"ids"];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ids"];
    }
    cell.textLabel.text = self.mydata[indexPath.row];

    UISwitch *mySwitch = [[UISwitch alloc]init];
    mySwitch.on = NO;
    [mySwitch addTarget:self action:@selector(switchOnOrOff:) forControlEvents:UIControlEventValueChanged];
    cell.accessoryView = mySwitch;
    return cell;
}
- (void)switchOnOrOff:(UISwitch *)uiswitch {
    
}

有些地方说的不到位,还请各位看官指正。。。

可以来微信公众号(洲洲哥)后台给我们留言。 快来扫码关注我们吧!

公众号二维码
上一篇下一篇

猜你喜欢

热点阅读