這篇文章給大家介紹Swift中clipped如何使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
clipped()函數(shù)介紹
Clips the view to its bounding rectangular frame.
將View裁剪成矩形
By default, a view's bounding frame is used only for layout, so any content that extends beyond the edges of the frame is still visible. Use the clipped(antialiased:)modifier to hide any content that extends beyond these edges.
默認情況下,視圖的邊界框架僅用于布局,因此超出框架邊緣的任何內(nèi)容仍然可見。使用clipped(antialiased:)修飾器可以隱藏超出這些邊緣的任何內(nèi)容。
代碼
import SwiftUIstruct ProductCard: View { var body: some View { VStack(alignment:.leading,spacing: 0){ Image("circle") .resizable() .scaledToFit() .frame(minWidth:nil, idealWidth: nil, maxWidth: UIScreen.main.bounds.width, minHeight: nil, idealHeight: nil, maxHeight: 300, alignment: .center ) .clipped() } }}
關(guān)于Swift中clipped如何使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。