GXFPopView.h 436 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
//
//  GXFPopView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/11.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

陈俊俊's avatar
陈俊俊 committed
11 12 13 14 15 16
@protocol GXFPopViewDelegate <NSObject>

- (void)selectRowTitle:(NSString *)str;
- (void)clearFromSuper;
@end

17
@interface GXFPopView : UIView
陈俊俊's avatar
陈俊俊 committed
18 19
@property (nonatomic,weak)id<GXFPopViewDelegate>delegate;

20 21 22
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)titleArr;

@end