We Recommend

Programming in Objective-C Programming in Objective-C
Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming. The book makes no assumption about prior experience with object-oriented programming languages or with the C language (upon which Objective-C is based). And because of this, both novice and experienced programmers alike can use this book to quickly and effectively learn the fundamentals of Objective-C.


Posted By

xaviaracil on 06/29/06


Tagged

cocoa dock badge


Versions (?)


Limpiar el icono de la aplicación en el dock


Published in: Objective C 


Limpia el icono de la aplicación en el dock, de manera que vuelva a mostrar el icono original


  1. -(void) initApplicationIcon{
  2. // empty application icon
  3. NSImage *appImage = [NSImage imageNamed:@"NSApplicationIcon"];
  4. [NSApp setApplicationIconImage:appImage];
  5. }

Report this snippet 

You need to login to post a comment.