How do I make an UIImage/-View with rounded corners CGRect (Swift)

Thomas

How do I make a UIImageView with rounded corners on a Swift iOS Playground?
Inside it needs to be filled with a color.

Mundi
let imageView = UIImageView(frame: CGRectMake(0, 0, 100, 100))
imageView.backgroundColor = UIColor.redColor()
imageView.layer.cornerRadius = 8.0
imageView.clipsToBounds = true

Result:

enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to make a view with rounded corners?

From Dev

Make UIImage with rounded corners and border

From Dev

How do I make a Container Transparent outside of his rounded corners?

From Dev

Saving UIImage with rounded corners and border with Swift

From Java

How to make an ImageView with rounded corners?

From Dev

How to make my corners rounded?

From Dev

How do I create a rounded corners Panel and Clip bound

From Dev

How do I create a layer that is a rectangle with rounded corners?

From Dev

How to make custom dialog with rounded corners in android

From Java

How to make layout with rounded corners..?

From Dev

How to make line with rounded (smooth) corners with AndroidPlot

From Dev

How to make rounded corners in image that was drawn with BezierPath

From Dev

How to make corners rounded in electron app

From Dev

Rounded corners on global view

From Dev

How to draw a simple rounded rect in swift (rounded corners)

From Java

smooth rounded corners in swift

From Dev

How do I set an UIImage through a animated UIView to another View Controller in SWIFT

From Dev

How do I create button with rounded corners/edges on Winform C#?

From Dev

How do I write a swift array that can make the same UIImage appear for all my dynamic cells?

From Dev

In swift, how do I make layers of a view programmatically?

From Java

How can I make a button have a rounded border in Swift?

From Dev

How to make a connect4 board with rounded corners and curved sides?

From Dev

How to make a button with rounded corners, background image and text in android

From Dev

How to make a connect4 board with rounded corners and curved sides?

From Dev

Subclass of UIButton with rounded corners (swift)

From Java

How do you create a UIImage View Programmatically - Swift

From Dev

How do I make rounded button-group in Foundation 6?

From Dev

How can I clip and transform an image, adding rounded corners and perspective?

From Dev

How to rounded the corners when I draw rectangle using UIBezierPath points

Related Related

  1. 1

    How to make a view with rounded corners?

  2. 2

    Make UIImage with rounded corners and border

  3. 3

    How do I make a Container Transparent outside of his rounded corners?

  4. 4

    Saving UIImage with rounded corners and border with Swift

  5. 5

    How to make an ImageView with rounded corners?

  6. 6

    How to make my corners rounded?

  7. 7

    How do I create a rounded corners Panel and Clip bound

  8. 8

    How do I create a layer that is a rectangle with rounded corners?

  9. 9

    How to make custom dialog with rounded corners in android

  10. 10

    How to make layout with rounded corners..?

  11. 11

    How to make line with rounded (smooth) corners with AndroidPlot

  12. 12

    How to make rounded corners in image that was drawn with BezierPath

  13. 13

    How to make corners rounded in electron app

  14. 14

    Rounded corners on global view

  15. 15

    How to draw a simple rounded rect in swift (rounded corners)

  16. 16

    smooth rounded corners in swift

  17. 17

    How do I set an UIImage through a animated UIView to another View Controller in SWIFT

  18. 18

    How do I create button with rounded corners/edges on Winform C#?

  19. 19

    How do I write a swift array that can make the same UIImage appear for all my dynamic cells?

  20. 20

    In swift, how do I make layers of a view programmatically?

  21. 21

    How can I make a button have a rounded border in Swift?

  22. 22

    How to make a connect4 board with rounded corners and curved sides?

  23. 23

    How to make a button with rounded corners, background image and text in android

  24. 24

    How to make a connect4 board with rounded corners and curved sides?

  25. 25

    Subclass of UIButton with rounded corners (swift)

  26. 26

    How do you create a UIImage View Programmatically - Swift

  27. 27

    How do I make rounded button-group in Foundation 6?

  28. 28

    How can I clip and transform an image, adding rounded corners and perspective?

  29. 29

    How to rounded the corners when I draw rectangle using UIBezierPath points

HotTag

Archive