CustomSegView.h 472 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//
//  CustomSegView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/11/6.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol CustomSegViewDelegate <NSObject>

- (void)customSegOneClick:(NSString *)title;
- (void)customSegTwoClick:(NSString *)title;


@end


@interface CustomSegView : UIView

@property (nonatomic,weak)id<CustomSegViewDelegate>delegate;

- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)arr;

@end