Files
2026-07-13 12:35:01 +08:00

36 lines
644 B
Objective-C

//
// UIFont+TLChat.h
// TLChat
//
// Created by 李伯坤 on 16/1/27.
// Copyright © 2016年 李伯坤. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIFont (TLChat)
#pragma mark - Common
+ (UIFont *)fontNavBarTitle;
#pragma mark - Conversation
+ (UIFont *)fontConversationUsername;
+ (UIFont *)fontConversationDetail;
+ (UIFont *)fontConversationTime;
#pragma mark - Friends
+ (UIFont *)fontFriendsUsername;
#pragma mark - Mine
+ (UIFont *)fontMineNikename;
+ (UIFont *)fontMineUsername;
#pragma mark - Setting
+ (UIFont *)fontSettingHeaderAndFooterTitle;
#pragma mark - Chat
+ (UIFont *)fontTextMessageText;
@end