mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
8 years ago
|
//
|
||
6 years ago
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
|
|
||
4 years ago
|
#import <SignalUtilitiesKit/UIColor+OWS.h>
|
||
|
#import <SignalUtilitiesKit/UIFont+OWS.h>
|
||
4 years ago
|
#import <SessionUtilitiesKit/MIMETypeUtil.h>
|
||
4 years ago
|
#import <SessionUtilitiesKit/UIImage+OWS.h>
|
||
11 years ago
|
|
||
6 years ago
|
#define ACCESSIBILITY_IDENTIFIER_WITH_NAME(_root_view, _variable_name) \
|
||
|
([NSString stringWithFormat:@"%@.%@", _root_view.class, _variable_name])
|
||
6 years ago
|
#define SET_SUBVIEW_ACCESSIBILITY_IDENTIFIER(_root_view, _variable_name) \
|
||
6 years ago
|
_variable_name.accessibilityIdentifier = ACCESSIBILITY_IDENTIFIER_WITH_NAME(_root_view, (@ #_variable_name))
|
||
6 years ago
|
|
||
10 years ago
|
typedef void (^completionBlock)(void);
|
||
|
|
||
11 years ago
|
/**
|
||
|
*
|
||
11 years ago
|
* UIUtil contains various class methods that centralize common app UI functionality that would otherwise be hardcoded.
|
||
11 years ago
|
*
|
||
|
*/
|
||
|
|
||
|
@interface UIUtil : NSObject
|
||
|
|
||
9 years ago
|
+ (void)applyRoundedBorderToImageView:(UIImageView *)imageView;
|
||
9 years ago
|
+ (void)removeRoundedBorderToImageView:(UIImageView *__strong *)imageView;
|
||
11 years ago
|
|
||
7 years ago
|
+ (void)setupSignalAppearence;
|
||
9 years ago
|
|
||
11 years ago
|
@end
|