News新闻

业界新闻动态、技术前沿
Who are we?

您的位置:首页      乐道系统FAQ      iOS自定义提示弹出框实现类似UIAlertView的效果

iOS自定义提示弹出框实现类似UIAlertView的效果

发布日期:2016-11-16 00:00:00 135
【CLI】利用Curl下载文件实时进度条显示的实现

首先来看看实现的效果图


下面话不多说,以下是实现的示例代码

#import <UIKit/UIKit.h>

typedef void(^AlertResult)(NSInteger index);

@interface XLAlertView : UIView

@property (nonatomic,copy) AlertResult resultIndex;

- (instancetype)initWithTitle:(NSString *)title message:(NSString *)message sureBtn:(NSString *)sureTitle cancleBtn:(NSString *)cancleTitle;

- (void)showXLAlertView;

@end