// // GXFPopView.h // XFFruit // // Created by 陈俊俊 on 15/9/11. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h>
@protocol GXFPopViewDelegate <NSObject> - (void)selectRowTitle:(NSString *)str; - (void)clearFromSuper; @end
@interface GXFPopView : UIView
@property (nonatomic,weak)id<GXFPopViewDelegate>delegate;
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)titleArr; @end