uview 弹出框放表单 验证失效_内容可自定义的弹出框 – CXAlertView

CXAlertView

可以添加视图作为主要内容的自定义弹出框。

示例

在ios5和6中显示ios7 样式弹出.

不像iOS6以下版本,iOS7无自定义,你无法在其中改变。这个弹出框可以实现在iOS7的弹出框中添加视图。

多种弹出文本和按钮标题.

全自定义弹出视图,带有通用字体颜色,半径。

安装

CocoaPods add pod ‘CXAlertView’

如何使用

// Create

- (id)initWithTitle:(NSString *)title message:(NSString *)message cancelButtonTitle:(NSString *)cancelButtonTitle;

- (id)initWithTitle:(NSString *)title contentView:(UIView *)contentView cancelButtonTitle:(NSString *)cancelButtonTitle;

// Buttons

- (void)addButtonWithTitle:(NSString *)title type:(CXAlertViewButtonType)type handler:(CXAlertViewHandler)handler;

- (void)setDefaultButtonImage:(UIImage *)defaultButtonImage forState:(UIControlState)state NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;

// AlertView action

- (void)show;

- (void)dismiss;

// Operation

- (void)cleanAllPenddingAlert;

你可能感兴趣的:(uview,弹出框放表单,验证失效)