开发遇到网络中断时候,通常是出现以下两种页面, #####图片+文字 (页面没有点击事件)
为了方便开发者的使用,简单为大家提供了已经封装好的方法,一句代码调用即可.
#####调用方法如下
//图片+文字
[self.view addSubview: [ZNoDateTip OffInternetWithTipImgStr:@"off" TipLabStr:@"请重新加载" TipLabColor:[UIColor grayColor] TipLabFont:16]];
//图片+按钮
ZNoDateTip *noDateView = [[ZNoDateTip alloc]init];
[self.view addSubview: [noDateView OffInternetWithTipImgStr:@"off" TipBtnStr:@"点击重试" TipBtnColor:[UIColor blackColor] TipBtnBgColor:[UIColor yellowColor] tipButtonBlock:^(UIButton *btn) {
NSLog(@"%@",btn);
[btn addTarget:self action:@selector(test:) forControlEvents:UIControlEventTouchUpInside];
}]];