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.
		
		
		
		
		
			
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Objective-C
		
	
| //
 | |
| //  Created by Jesse Squires
 | |
| //  http://www.jessesquires.com
 | |
| //
 | |
| //
 | |
| //  Documentation
 | |
| //  http://cocoadocs.org/docsets/JSQMessagesViewController
 | |
| //
 | |
| //
 | |
| //  GitHub
 | |
| //  https://github.com/jessesquires/JSQMessagesViewController
 | |
| //
 | |
| //
 | |
| //  License
 | |
| //  Copyright (c) 2014 Jesse Squires
 | |
| //  Released under an MIT license: http://opensource.org/licenses/MIT
 | |
| //
 | |
| 
 | |
| #import <Foundation/Foundation.h>
 | |
| #import <UIKit/UIKit.h>
 | |
| 
 | |
| #import "JSQMessageAvatarImageDataSource.h"
 | |
| 
 | |
| /**
 | |
|  *  A `JSQMessagesAvatarImage` model object represents an avatar image.
 | |
|  *  This is a concrete class that implements the `JSQMessageAvatarImageDataSource` protocol.
 | |
|  *  It contains a regular avatar image, a highlighted avatar image, and a placeholder avatar image.
 | |
|  *
 | |
|  *  @see JSQMessagesAvatarImageFactory.
 | |
|  */
 | |
| @interface JSQMessagesAvatarImage : NSObject <JSQMessageAvatarImageDataSource, NSCopying>
 | |
| 
 | |
| /**
 | |
|  *  The avatar image for a regular display state.
 | |
|  */
 | |
| @property (nonatomic, strong) UIImage *avatarImage;
 | |
| 
 | |
| /**
 | |
|  *  The avatar image for a highlighted display state.
 | |
|  */
 | |
| @property (nonatomic, strong) UIImage *avatarHighlightedImage;
 | |
| 
 | |
| /**
 | |
|  *  Returns the placeholder image for an avatar to display if avatarImage is `nil`.
 | |
|  */
 | |
| @property (nonatomic, strong, readonly) UIImage *avatarPlaceholderImage;
 | |
| 
 | |
| /**
 | |
|  *  Initializes and returns an avatar image object having the specified image.
 | |
|  *
 | |
|  *  @param image The image for this avatar image. This image will be used for the all of the following
 | |
|  *  properties: avatarImage, avatarHighlightedImage, avatarPlaceholderImage;
 | |
|  *  This value must not be `nil`.
 | |
|  *
 | |
|  *  @return An initialized `JSQMessagesAvatarImage` object if successful, `nil` otherwise.
 | |
|  */
 | |
| + (instancetype)avatarWithImage:(UIImage *)image;
 | |
| 
 | |
| /**
 | |
|  *  Initializes and returns an avatar image object having the specified placeholder image.
 | |
|  *
 | |
|  *  @param placeholderImage The placeholder image for this avatar image. This value must not be `nil`.
 | |
|  *
 | |
|  *  @return An initialized `JSQMessagesAvatarImage` object if successful, `nil` otherwise.
 | |
|  */
 | |
| + (instancetype)avatarImageWithPlaceholder:(UIImage *)placeholderImage;
 | |
| 
 | |
| /**
 | |
|  *  Initializes and returns an avatar image object having the specified regular, highlighed, and placeholder images.
 | |
|  *
 | |
|  *  @param avatarImage      The avatar image for a regular display state.
 | |
|  *  @param highlightedImage The avatar image for a highlighted display state.
 | |
|  *  @param placeholderImage The placeholder image for this avatar image. This value must not be `nil`.
 | |
|  *
 | |
|  *  @return An initialized `JSQMessagesAvatarImage` object if successful, `nil` otherwise.
 | |
|  */
 | |
| - (instancetype)initWithAvatarImage:(UIImage *)avatarImage
 | |
|                    highlightedImage:(UIImage *)highlightedImage
 | |
|                    placeholderImage:(UIImage *)placeholderImage NS_DESIGNATED_INITIALIZER;
 | |
| 
 | |
| /**
 | |
|  *  Not a valid initializer.
 | |
|  */
 | |
| - (id)init NS_UNAVAILABLE;
 | |
| 
 | |
| @end
 |