热门标签 | HotTags
当前位置:  开发笔记 > IOS > 正文

SwiftUI图像clipsToBounds

如何解决《SwiftUI图像clipsToBounds》经验,为你挑选了1个好方法。

在尝试SwiftUI(Xcode 11.0 beta 2)时,我尝试用图像填充View:

Image("large")
    .resizable()
    .aspectRatio(contentMode: .fill)
    .frame(width: 80, height: 80, alignment: .center)
    .border(Color.black)

这样呈现:

我想应用类似的东西,UIView.clipsToBounds以便图像被裁剪并且盒子外面的部分不可见。



1> trungduc..:

您可以使用.clipped()修饰符使与UIView.clipsToBounds

Image("large")
    .resizable()
    .aspectRatio(contentMode: .fill)
    .frame(width: 80, height: 80, alignment: .center)
    .border(Color.black)
    .clipped()  // Equal to clipsToBounds = true


推荐阅读
author-avatar
已1注2销
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有