JCHATMoreView.h 734 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // JPIMMore.h
  3. // JPush IM
  4. //
  5. // Created by Apple on 14/12/30.
  6. // Copyright (c) 2014年 Apple. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol AddBtnDelegate <NSObject>
  10. @optional
  11. - (void)photoClick;
  12. - (void)cameraClick;
  13. -(void)voiceInputClick;
  14. -(void)locationClick;
  15. @end
  16. @interface JCHATMoreView : UIView
  17. @property (weak, nonatomic) IBOutlet UIButton *photoBtn;
  18. @property (weak, nonatomic) IBOutlet UIButton *cameraBtn;
  19. @property (weak, nonatomic) IBOutlet UIButton *voiceInputBtn;
  20. @property (weak, nonatomic) IBOutlet UIButton *locationBtn;
  21. @property (assign, nonatomic) id<AddBtnDelegate>delegate;
  22. @end
  23. @interface JCHATMoreViewContainer : UIView
  24. @property (strong, nonatomic) JCHATMoreView *moreView;
  25. @end