自定义下拉框的封装

/********.h文件**********/

 

@interface HWDropdownMenu : UIView

+ (instancetype)menu;

 

/**

 *  显示

 */

- (void)showFrom:(UIView *)from;

/**

 *  销毁

 */

- (void)dismiss;

 

/**

 *  内容

 */

@property (nonatomic, strong) UIView *content;

/**

 *  内容控制器

 */

@property (nonatomic, strong) UIViewController *contentController;

@end

 

/********* .m文件**********/

@interface HWDropdownMenu()

/**

 *  将来用来显示具体内容的容器

 */

@property (nonatomic, weak) UIImageView *containerView;

@end

 

@implementation HWDropdownMenu

 

- (UIImageView *)containerView

{

    if (!_containerView) {

        // 添加一个灰色图片控件

        UIImageView *containerView = [[UIImageView alloc] init];

        containerView.image = [UIImage imageNamed:@"popover_background"];

        containerView.userInteractionEnabled = YES; // 开启交互

        [self addSubview:containerView];

        self.containerView = containerView;

    }

    return _containerView;

}

 

- (id)initWithFrame:(CGRect)frame

{

    self = [super initWithFrame:frame];

    if (self) {

        // 清除颜色

        self.backgroundColor = [UIColor clearColor];

    }

    return self;

}

 

 

+ (instancetype)menu

{

    return [[self alloc] init];

}

 

- (void)setContent:(UIView *)content

{

    _content = content;

    

    // 调整内容的位置

    content.x = 10;

    content.y = 15;

    

    // 调整内容的宽度

//    content.width = self.containerView.width - 2 * content.x;

    

    // 设置灰色的高度

    self.containerView.height = CGRectGetMaxY(content.frame) + 11;

    // 设置灰色的宽度

    self.containerView.width = CGRectGetMaxX(content.frame) + 10;

    

    // 添加内容到灰色图片中

    [self.containerView addSubview:content];

}

 

- (void)setContentController:(UIViewController *)contentController

{

    _contentController = contentController;

    

    self.content = contentController.view;

}

 

/**

 *  显示

 */

- (void)showFrom:(UIView *)from

{

    // 1.获得最上面的窗口

    UIWindow *window = [[UIApplication sharedApplication].windows lastObject];

    

    // 2.添加自己到窗口上

    [window addSubview:self];

    

    // 3.设置尺寸

    self.frame = window.bounds;

    

    // 4.调整灰色图片的位置

    // 默认情况下,frame是以父控件左上角为坐标原点

    // 转换坐标系

    CGRect newFrame = [from convertRect:from.bounds toView:window];

//    CGRect newFrame = [from.superview convertRect:from.frame toView:window];

    self.containerView.centerX = CGRectGetMidX(newFrame);

    self.containerView.y = CGRectGetMaxY(newFrame);

}

 

/**

 *  销毁

 */

- (void)dismiss

{

    [self removeFromSuperview];

}

 

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

    [self dismiss];

}

@end

转载于:https://www.cnblogs.com/feilin/p/5054644.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值