美文网首页专注iOS开发(OC/Swift)
自定义辅助视图accessoryview

自定义辅助视图accessoryview

作者: 洲洲哥 | 来源:发表于2018-08-14 16:22 被阅读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 {
        
    }
    
    

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

    • 如有问题可添加QQ群:234812704
    • 欢迎各位一块学习,提高逼格!
    • 也可以添加洲洲哥的微信公众号

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

    公众号二维码

    相关文章

      网友评论

        本文标题:自定义辅助视图accessoryview

        本文链接:https://www.haomeiwen.com/subject/azyvbftx.html