這篇文章給大家介紹Swift中clipped如何使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:域名注冊、網(wǎng)站空間、營銷軟件、網(wǎng)站建設、鄄城網(wǎng)站維護、網(wǎng)站推廣。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)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。