emotionView.h 577 B

123456789101112131415161718192021222324
  1. //
  2. // emotionView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol changeEmotionStatuDelegate <NSObject>
  10. //修改情感状态的代理
  11. - (void)changeEmotionStatuWithString:(NSString *)emoyionString;
  12. @end
  13. @interface emotionView : UIView
  14. @property (nonatomic, assign)int arrayCount;
  15. @property (nonatomic, weak) id<changeEmotionStatuDelegate>delegate;
  16. @property (nonatomic, strong) NSArray *titleArray;
  17. - (instancetype)initWithFrame:(CGRect)frame withName:(NSString *)name;
  18. @end