init(image:)
Returns an image view initialized with the specified image.
Declaration
init(image: UIImage?)Parameters
- image:
The initial image to display in the image view. You may specify an image object that contains an animated sequence of images.
Return Value
An initialized image view object.
Discussion
The image you specified is used to configure the initial size of the image view itself. Use constraints and the image view’s content mode to adjust the image view’s final size onscreen. This method disables user interactions for the image view by setting the isUserInteractionEnabled property to false.
If you specify an animated image whose duration is greater than 0, the image view automatically starts playing the animation.