您好,登錄后才能下訂單哦!
這篇文章給大家介紹Swift中clipped如何使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
clipped()函數介紹
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.
默認情況下,視圖的邊界框架僅用于布局,因此超出框架邊緣的任何內容仍然可見。使用clipped(antialiased:)修飾器可以隱藏超出這些邊緣的任何內容。
代碼
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() } }}
關于Swift中clipped如何使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。