session-ios/Signal/src/util/UIFont+OWS.h
dtsbourg 32f1cb3755 Archive/Inbox: Unread layout and other enhancements
- Add lastAction indicator for errors and info in TSThreadViews
- Enable unarchiving and deletion from archive.
- Unread message layout
2015-01-04 11:30:24 +01:00

24 lines
454 B
Objective-C

//
// UIFont+OWS.h
// Signal
//
// Created by Dylan Bourgeois on 25/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIFont (OWS)
+ (UIFont*) ows_thinFontWithSize:(CGFloat)size;
+ (UIFont*) ows_lightFontWithSize:(CGFloat)size;
+ (UIFont*) ows_regularFontWithSize:(CGFloat)size;
+ (UIFont*) ows_mediumFontWithSize:(CGFloat)size;
+ (UIFont*) ows_boldFontWithSize:(CGFloat)size;
@end