LuxChat  2.0
Instant messenger for iOS
JSQMessageAvatarImageDataSource.h
1 //
2 // Created by Jesse Squires
3 // http://www.jessesquires.com
4 //
5 //
6 // Documentation
7 // http://cocoadocs.org/docsets/JSQMessagesViewController
8 //
9 //
10 // GitHub
11 // https://github.com/jessesquires/JSQMessagesViewController
12 //
13 //
14 // License
15 // Copyright (c) 2014 Jesse Squires
16 // Released under an MIT license: http://opensource.org/licenses/MIT
17 //
18 
19 #import <Foundation/Foundation.h>
20 #import <UIKit/UIKit.h>
21 
33 @protocol JSQMessageAvatarImageDataSource <NSObject>
34 
35 @required
36 
42 - (UIImage *)avatarImage;
43 
49 - (UIImage *)avatarHighlightedImage;
50 
61 - (UIImage *)avatarPlaceholderImage;
62 
63 @end
Definition: JSQMessageAvatarImageDataSource.h:33