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.
		
		
		
		
		
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			850 B
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			29 lines
		
	
	
		
			850 B
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  Copyright (c) 2017 Open Whisper Systems. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#import <UIKit/UIKit.h>
 | 
						|
 | 
						|
typedef void (^ConfigureShapeLayerBlock)(CAShapeLayer *_Nonnull layer, CGRect bounds);
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
@interface OWSBezierPathView : UIView
 | 
						|
 | 
						|
// Configure the view with this method if it uses a single Bezier path.
 | 
						|
@property (nonatomic) ConfigureShapeLayerBlock configureShapeLayerBlock;
 | 
						|
 | 
						|
// Configure the view with this method if it uses multiple Bezier paths.
 | 
						|
//
 | 
						|
// Paths will be rendered in back-to-front order.
 | 
						|
@property (nonatomic) NSArray<ConfigureShapeLayerBlock> *configureShapeLayerBlocks;
 | 
						|
 | 
						|
// This method forces the view to reconstruct its layer content.  It shouldn't
 | 
						|
// be necessary to call this unless the ConfigureShapeLayerBlocks depend on external
 | 
						|
// state which has changed.
 | 
						|
- (void)updateLayers;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |