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
?
source share