// // ModelTitleView.h // model // // Created by JuYi on 2018/7/17. // Copyright © 2018年 Mine. All rights reserved. // 选择按钮 #import @interface ModelTitleView : UIView @property (nonatomic, strong) NSArray *titleArr; // 存放按钮的名字 /** * 结束的回调 */ @property (nonatomic, copy) void (^ModelTitleViewBlock)(NSInteger); @property (nonatomic, strong) UIImageView *longLineView; //长划线 @end