首页 > 代码库 > 轮询弹出框

轮询弹出框

 

 

第一次接触轮询的概念,其实后来才明白,轮询就是一个HTTP请求,只不过后来又加了一个定时器。可以让软件过一段时间就像服务器请求一次。

 

轮询中有个弹出框,还是很奇怪的。其实,很简单。它只是用了一个开源的库。

 

1,下载开源的库,MPNotification.

 

2,把里面的MPNotificationView,OBGradientView两部分添加到工程里。如下图所示。

 

 

3,上代码:

 

//加入弹出框的头文件#import "MPNotificationView.h"- (void)viewDidLoad{    [super viewDidLoad];    // Do any additional setup after loading the view.        self.title=@"RootViewController";        //弹出框前面有图片      [self showWithFrame];    //弹出框可以进行点击      [self showWithTouch];   }#pragma -mark -可以点击的,点击后消息,并且可以在点击后添加事件-(void)showWithTouch{    [MPNotificationView notifyWithText:@"李华:"                                detail:@"今天有时间吗?"                         andTouchBlock:^(MPNotificationView *notificationView) {                                                          UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"提醒" message:@"已点击弹出框" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];                             [alert show];                                                      }];}#pragma -mark -弹出框在前面有一张图片,然后,5.0s后自己会主动消失。没到5.0s点击的时候也会消失。-(void)showWithFrame{    [MPNotificationView notifyWithText:@"李华:"                                detail:@"今天有时间吗?"                                 image:[UIImage imageNamed:@"1.jpeg"]                           andDuration:5.0];}