Add a border with cornerRadius to an Image in SwiftUI Xcode beta 5
问题 how can I add a border with a cornerRadius to an Image. I get a deprecation warning saying that i should use a RoundedRectange Shape, but i don't know how to use that exactly Beta 4: Image(uiImage: ...) .border(Color.black, width: 2, cornerRadius: 10) 回答1: SwiftUI 1.0 Using cornerRadius & overlay Modifiers Here is another way in which we can use a cornerRadius modifier (which clips the view) and then overlay a stroke with a color. VStack(spacing: 40) { Text("Image Border").font(.largeTitle)