我在组件内有一个组件,但我不知道如何在css文件中设置其样式。我尝试了很多不同的方法,但是没有用。
所以看起来像这样:
outter.component.html
UITableView
my-custom-component.component.html
和来自outter.component.scss 我要添加
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CellRID") as! PaymentCell
if selectedIndexPath != nil && indexPath == selectedIndexPath {
cell.btnCheckUnCheck.setImage(UIImage(named: "CheckTerm"), for: .normal)
} else {
cell.btnCheckUnCheck.setImage(UIImage(named: "uncheckTerm"), for: .normal)
}
return cell
}
我想将样式应用于我的嵌套组件。我尝试了:host >>> i {},:: shadow和其他方法,但是没有用。