• Stars
    star
    119
  • Rank 297,930 (Top 6 %)
  • Language
    Objective-C
  • Created almost 9 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

iOS display in Network Error or not connect . demo.

XTNetReloader

iOS display in Network Error or not connect . demo.

显示网络故障页面的封装

极简的调用方式

  • 只需传入两个参数
  1. 所在的view
  2. 刷新动作block.(通常是请求)
  • 在请求完成时调用dismiss
    [XTNetReloader showInView:self.view
                  doReRefresh:^{
                       NSLog(@"开始刷新 。。。") ;
                      // 请求 ...
                      
                      // 请求完成后
                      [XTNetReloader dismiss] ;
                   }] ;

img