Descriptive Name for EKSource in iOS5

I’ve been trying to get a descriptive name for EKSource on iOS5 for a while, but the problem that I continue to work with is that the header of the external exchange source is always β€œExchange”, although the native calendar application presents the source as β€œ aname@gmail.com "

src is EKSource*

  NSString *sourceTitle = [src title]; 

returns only "Exchange".

  NSString *sourceTitle = [src description]; 

returns debug printing information as expected.

However, in the application of its own calendar (and in another third-party application), the same source is presented as " aname@gmail.com ". How do I dig this name from src ?

+4
source share
1 answer

Perhaps you are trying to get a more detailed description from the attached calendar?

-2
source

All Articles