session-ios/Signal/src/util/UIUtil.h

27 lines
637 B
C
Raw Normal View History

2014-05-06 19:41:08 +02:00
#import <Foundation/Foundation.h>
#import "MIMETypeUtil.h"
2014-11-24 21:51:43 +01:00
#import "UIColor+OWS.h"
#import "UIFont+OWS.h"
#import "UIImage+contentTypes.h"
#import "UIImage+normalizeImage.h"
2014-11-24 21:51:43 +01:00
typedef void (^completionBlock)(void);
2014-05-06 19:41:08 +02:00
/**
*
2014-11-24 21:51:43 +01:00
* UIUtil contains various class methods that centralize common app UI functionality that would otherwise be hardcoded.
2014-05-06 19:41:08 +02:00
*
*/
@interface UIUtil : NSObject
+ (void)applyRoundedBorderToImageView:(UIImageView *)imageView;
+ (void)removeRoundedBorderToImageView:(UIImageView *__strong *)imageView;
2014-05-06 19:41:08 +02:00
+ (completionBlock)modalCompletionBlock;
+ (void)applyDefaultSystemAppearence;
+ (void)applySignalAppearence;
2014-05-06 19:41:08 +02:00
@end