How do I set the font of an UI element (ex. UILabel) to the "System" font in IB?
In code, I know I can do the following:
UIFont * tempFont = [[UIFont systemFontOfSize:24] retain];
But what about doing the same thing in IB? What is the default system font on the IPhone?