NTESGalleryViewController.h 749 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // NTESGalleryViewController.h
  3. // NIMDemo
  4. //
  5. // Created by ght on 15-2-3.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NTESGalleryItem : NSString
  10. @property (nonatomic,copy) NSString *itemId;
  11. @property (nonatomic,copy) NSString *thumbPath;
  12. @property (nonatomic,copy) NSString *imageURL;
  13. @property (nonatomic,copy) NSString *name;
  14. @property (nonatomic,assign) CGSize size;
  15. @end
  16. @interface NTESGalleryViewController : UIViewController
  17. - (instancetype)initWithItem:(NTESGalleryItem *)item session:(NIMSession *)session;
  18. @end
  19. @interface NTESGalleryViewController(SingleView)
  20. + (UIView *)alertSingleSnapViewWithMessage:(NIMMessage *)message baseView:(UIView *)view;
  21. @end