0

Hi guy it's possible put in the application Badge some letter?

Something like ON OFF?

    [UIApplication sharedApplication].applicationIconBadgeNumber = 1;     

Work but it's a number

in the Sadun's book (my last day bibble) i see

       [UIApplication sharedApplication] setapplicationBadge:@"ON";

But not work, any idea?

Acunamatata
  • 55
  • 2
  • 9

1 Answers1

1

setApplicationBadge: isn't in the UIApplication API documentation. My guess is that the method used to exist but was removed.

yuji
  • 16,695
  • 4
  • 63
  • 64
  • 1
    Or that it was/is private. She liberally used private APIs in the first edition, not sure about later editions. – fearmint Mar 27 '12 at 18:26