web-dev-qa-db-fra.com

Comment créer un png transparent vierge dans Objective-C?

Comment puis-je créer un UIImage png vierge dans Objective C par programme (disons 36x36 px)?

Merci :)

49
Nili

Vous pouvez ouvrir un contexte d'image, puis récolter son contenu immédiatement, sans y insérer quoi que ce soit. Cela devrait produire un 36x36UIImage:

UIGraphicsBeginImageContextWithOptions(CGSizeMake(36, 36), NO, 0.0);
UIImage *blank = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
99
dasblinkenlight