iOS-UI

MMPopupView的基本使用

2016-09-07  本文已影响1560人  c048e8b8e3d7
pod 'MMPopupView'

一 自定义界面

1 类型解析

MMPopupTypeMMPopupView的一个枚举变量,主要用于动画效果

2 区别

MMPopupTypeCustomMMPopupTypeAlert会自动把自定义界面放在屏幕中央,而设置为MMPopupTypeSheet的时候则界面底部会保持在屏幕底部的位置

3 自定义
#import <MMPopupView/MMPopupView.h>
@interface TestView : MMPopupView
@implementation TestView

- (instancetype)init
{
    if (self = [super init]) {
        //点击半透明背景使界面自动消失
        [MMPopupWindow sharedWindow].touchWildToHide = YES;
        //设置类型
        self.type = MMPopupTypeCustom;
        
        //设置尺寸,self只需设置宽高,会根据类型来确定在屏幕中的位置
        #//请使用Masonry相关方法来设置宽高,否则会有问题
        [self mas_makeConstraints:^(MASConstraintMaker *make) {
            make.width.mas_equalTo(200);
            make.height.mas_equalTo(200);
        }];
        self.backgroundColor = WHITE_COLOR;
        //使用[self addSubview:subview];来添加其他控件
    }
    return self;
}
4 使用
TestView *popupView = [[TestView alloc] init];
[popupView show];
5 注意点

在设置self尺寸的时候,如果使用self.size = CGSizeMake(w,h)方式来设置,会出现尺寸及相关界面紊乱问题,由于在MMPopupView内部的尺寸变化是通过Masonry相关方法来实现的,所以在设置self尺寸的时候尽量使用Masonry相关方法,不过subViews可以使用CGRectMake这种方式来设置尺寸。

二 使用MMSheetView

1 首先需要引入相关文件

#import <MMPopupView/MMSheetView.h>

2 基本使用
MMPopupItemHandler block = ^(NSInteger index) {
            //添加的第一个元素索引为0,依次增加
        };
        
NSArray *items =
        @[MMItemMake(@"item1", MMItemTypeHighlight, block),
          MMItemMake(@"item2", MMItemTypeNormal, block),
          MMItemMake(@"item3", MMItemTypeDisabled, block)];
        
MMSheetView *view = [[MMSheetView alloc] initWithTitle:@"title" items:items];
// view.attachedView = self.view;
[view show];
3 关于attachedView

attachedView意思就是依附的View被依附的View所有交互不可用,其他View的交互保持不变,如果不设置这个属性,则屏幕内所有的交互不可用,因为作者的文档是这么写的// default is MMPopupWindow. You can attach MMPopupView to any UIView.MMPopupWindow是一个全屏的Window

4 配置相关属性

我们发现MMSheetView显示的时候底部的按钮显示为取消,然而在上面的代码中我们并没有配置这个属性,这是因为取消是默认的,如果想修改这个字段或者相关的其他属性,可以使用下面的代码,这些代码最好放在初始化MMSheetView的代码之前

[MMSheetViewConfig globalConfig].defaultTextCancel = @"Cancel";

三 AlertView

1 首先引入相关文件

#import <MMPopupView/MMAlertView.h>

2.1 最常见的使用
MMPopupItemHandler block = ^(NSInteger index) {
            //添加的第一个元素索引为0,一次增加
        }; 
NSArray *items =
        @[MMItemMake(@"确定", MMItemTypeHighlight, block),
          MMItemMake(@"取消", MMItemTypeNormal, block)];    
MMAlertView *view = [[MMAlertView alloc] initWithTitle:@"Title" detail:@"Detail" items:items];

[view show]; 
2.2 只带一个按钮的提示框

一般用于信息的展示,用户看完后点击按钮消失,没有监听事件的产生

MMAlertView *view = [[MMAlertView alloc] initWithConfirmTitle:@"OK" detail:@"Detail"];

[view show];
2.3 带输入框的提示框

提示框自带一个取消和一个确定按钮

MMAlertView *view = [[MMAlertView alloc] initWithInputTitle:@"Title" detail:@"Detail" placeholder:@"Placeholder" handler:^(NSString *text) {
            NSLog(@"text %@", text);
        }];
        
[view show];
3 相关属性配置

使用MMAlertViewConfig来配置相关的属性,用法和MMSheetViewConfig一样

上一篇下一篇

猜你喜欢

热点阅读