// // XG_TitleView.h // MyApp // // Created by huxinguang on 2018/9/11. // Copyright © 2018年 huxinguang. All rights reserved. // #import typedef NS_ENUM(NSInteger,XG_TitleViewStyle) { XG_TitleViewStyleNormal, XG_TitleViewStyleSegement }; @protocol XG_TitleViewDelegate - (void)onTitleClick; @end @interface XG_TitleView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, copy) NSString *titleString; - (instancetype)initWithFrame:(CGRect)frame style:(XG_TitleViewStyle)style; @end