#import <TapTalk/TAPStyleManager.h>
//You can use this method to set the font for specific component
[[TAPStyleManager sharedManager] setComponentFont:FONT forType:TAP_COMPONENT_FONT_TYPE];
//And use this method to set the color for the specific component
[[TAPStyleManager sharedManager] setTextColor:COLOR forType:TAP_TEXT_COLOR_TYPE];
//For example if you wish to set the style for your title label, you can use the following methods:
//Set the font (consist of font name and size)
[[TAPStyleManager sharedManager] setComponentFont:FONT forType:TAPComponentFontTitleLabel];
[[TAPStyleManager sharedManager] setTextColor:FONT forType:TAPTextColorTitleLabel];