I just have a quick question. I imported a custom font (Source Sans Pro) into XCode and am able to apply it to an element as such:
txt.font = [UIFont fontWithName:@"Source Sans Pro" size:18];
My question is, is there a an easy way to apply this font to all elements in the app through say the Appdelegate? I do not want to have to apply it to each element individually. Any ideas?