美文网首页
ios- 关于行高、关于开关

ios- 关于行高、关于开关

作者: 我不白先生 | 来源:发表于2020-10-24 11:17 被阅读0次

关于行高的三种方法
一种:

- (void)viewDidLoad {
    [super viewDidLoad];
    self.tableView.rowHeight =60;
}

二种

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    return 60;
}

三种


image.png

=============================

关于开关事情属性UISwitch*

- (IBAction)valueChanged:(UISwitch *)sender {
    self.label.text = sender.on ? @"开" : @"关";
}
image.png

相关文章

网友评论

      本文标题:ios- 关于行高、关于开关

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