Class YMKIconSet

A set of icons.

Instance Methods

- addWithId:image:

Adds the image with the given ID to the icon source.

- addWithImage:

Adds an image to the icon set.

- addWithId:image:

Adds the image with the given ID to the icon source.

- addWithImage:

Adds an image to the icon set.

Properties

valid

Tells if this object is valid or no.

valid

Tells if this object is valid or no.

Method Detail

-addWithId:image:

- (void)addWithId:(nonnull NSString *)id
            image:(nullable UIImage *)image 

Adds the image with the given ID to the icon source.

The image size is scaled using the formula "value = scaleFactor / 4". The same ID should be used as the image-url in the customized layer style.

-addWithImage:

- (void)addWithImage:(nullable UIImage *)image 

Adds an image to the icon set.

The image provider's ID will be used as the icon ID. The image size is scaled using the formula "value = scaleFactor / 4". The same ID should be used as the image-url in the customized layer style.

Property Detail

valid

(assign, readonly, getter=isValid) BOOL valid

Tells if this object is valid or no.

Any method called on an invalid object will throw an exception. The object becomes invalid only on UI thread, and only when its implementation depends on objects already destroyed by now. Please refer to general docs about the interface for details on its invalidation.