ModelTitleView.h 448 B

12345678910111213141516171819
  1. //
  2. // ModelTitleView.h
  3. // model
  4. //
  5. // Created by JuYi on 2018/7/17.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 选择按钮
  8. #import <UIKit/UIKit.h>
  9. @interface ModelTitleView : UIView
  10. @property (nonatomic, strong) NSArray *titleArr; // 存放按钮的名字
  11. /**
  12. * 结束的回调
  13. */
  14. @property (nonatomic, copy) void (^ModelTitleViewBlock)(NSInteger);
  15. @property (nonatomic, strong) UIImageView *longLineView; //长划线
  16. @end