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.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			586 B
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			586 B
		
	
	
	
		
			Objective-C
		
	
| //
 | |
| //  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | |
| //
 | |
| 
 | |
| #import "UIColor+OWS.h"
 | |
| #import "UIFont+OWS.h"
 | |
| #import <SignalServiceKit/MIMETypeUtil.h>
 | |
| #import <SignalServiceKit/UIImage+OWS.h>
 | |
| 
 | |
| typedef void (^completionBlock)(void);
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * UIUtil contains various class methods that centralize common app UI functionality that would otherwise be hardcoded.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| @interface UIUtil : NSObject
 | |
| 
 | |
| + (void)applyRoundedBorderToImageView:(UIImageView *)imageView;
 | |
| + (void)removeRoundedBorderToImageView:(UIImageView *__strong *)imageView;
 | |
| 
 | |
| + (void)setupSignalAppearence;
 | |
| 
 | |
| @end
 |