MMPopupView icon indicating copy to clipboard operation
MMPopupView copied to clipboard

Pop-up based view(e.g. alert sheet), can be easily customized.

Results 47 MMPopupView issues
Sort by recently updated
recently updated
newest added

我这里有个需求,Appdelegate中监听某一事件,当触发后弹出提示框。请问在要如何使用? alert.attachedView = self.window.rootViewController.view alert.show() 行不通

首先,非常感谢你分享的popView框架,用起来非常方便。效果也很好。 其次,有个问题请教一下:当我点击了MMPopView的item之后,然后当前控制器去modal一个控制器,经常会崩溃,但是没有断点。希望有时间查看一下这个问题。我也在查看,有结果会及时通知你,谢谢!

这个样式真心漂亮, 不知是否考虑出个swift版? 找了好几圈, 一直未找到能这么漂亮的swift版本的替代版本..

建议加入列表式勾选

串哥,原因是detailLabel的top.offSet写死了。 [self.detailLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.top.equalTo(lastAttribute).offset(5);//这里应该加一个判断 make.left.right.equalTo(self).insets(UIEdgeInsetsMake(0, config.innerMargin, 0, config.innerMargin)); }];

继承MMPopupView自定义的view,在执行show或showWithBlock之后,要么使用masonry设置其宽高约束;要么能通过内容约束计算出view的大小。不能直接设置frame。举个例子: @interface FKGenderView : MMPopupView @end @implementation FKGenderView - (void)show { [self showWithBlock:nil]; } - (void)showWithBlock:(MMPopupCompletionBlock)block { [super showWithBlock:block]; [self mas_makeConstraints:^(MASConstraintMaker *make) { make.width.height.equalTo(self.superview); }]; } @end [customPopupVIew mas_makeConstraints:^(MASConstraintMaker *make)...

怎么修改都不显示