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

18 lines
401 B
C
Raw Normal View History

2014-05-06 19:41:08 +02:00
#import <Foundation/Foundation.h>
2014-11-24 21:51:43 +01:00
#import "UIColor+OWS.h"
#import "UIFont+OWS.h"
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 *__strong*)imageView;
+ (void)removeRoundedBorderToImageView:(UIImageView *__strong*)imageView;
@end