Skip to content

Update UIImage's imageLiteralResourceName: initializer #10941

Open
@iamgabrielma

Description

@iamgabrielma

We have several places where we initialize images using UIImage(imageLiteralResourceName: String) initializer. This could be an issue since relies on a String literal and it's implementation shows that would crash if the resource cannot be found:

extension UIImage {

    /// Creates an instance initialized with the given resource name.
    ///
    /// Do not call this initializer directly. Instead, initialize a variable or
    /// constant using an image literal.
    required public convenience init(imageLiteralResourceName name: String)
}

Instead we should use UIImage(named: String) which would return nil instead.

Metadata

Metadata

Assignees

Labels

good first issueThe issue is a good candidate for a community contribution or for a newcomer to the team.type: enhancementA request for an enhancement.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions