MJMJRefresh、SDWebImage

weixin_34393428發表於2018-06-29

1.佈局


12535316-cba3534625f8ca03.png
Main.storyboard

繼承於UITableViewCell

12535316-7a05190a3ab264ee.png
myTableViewCell.xib

拖拽控制元件


12535316-c21f8855a082b42a.png

2.

#import "ViewController.h"

#import "myTableViewCell.h"

#import "UIImageView+WebCache.h"

#import "MJRefresh.h"

#import "MJRefreshFooter.h"

#import "MJRefreshAutoFooter.h"

#import "MJRefreshHeader.h"

#import "MBProgressHUD.h"

@interface ViewController ()

{

    UITableView *tbv;

    NSMutableDictionary *dic;

    NSArray *arr;

    int  i;

}

@ end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // 建立表格

    tbv = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStylePlain];

    // 設定行高

    tbv.rowHeight = 200;

    // 設定資料來源和代理

    tbv.delegate=self;

    tbv.dataSource = self;

    // 新增到主介面

    [self.view  addSubview: tbv];



    NSURLSession *session = [NSURLSession sharedSession];

    NSString *filePath = @"https://way.jd.com/jisuapi/get?channel=頭條&num=10&start=0&appkey=54e619938bc38b40151c7bc35a29067e";

    NSString *str1 = [filePath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    NSURLSessionDataTask*task = [sessiondataTaskWithURL:[NSURLURLWithString:str1]completionHandler:^(NSData*_Nullabledata,NSURLResponse*_Nullableresponse,NSError*_Nullableerror) {


        // JSON解析

        dic = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];

        dispatch_async(dispatch_get_main_queue(), ^{

            // 重新整理表格

            [tbv  reloadData];

        });


    }];

    // 開始請求

    [task  resume];



    // 使用MJRefresh,實現下拉重新載入資料的功能

    MJRefreshNormalHeader *header = [MJRefreshNormalHeader headerWithRefreshingTarget:self refreshingAction:@selector(header)];

    //    [header setTitle:@"正在努力載入中! ! !" forState:MJRefreshStateRefreshing];

    tbv.mj_header= header;

    // 使用MJRefresh,實現上拉載入更多資料的功能

    MJRefreshBackFooter *footer = [MJRefreshBackFooter footerWithRefreshingTarget:self refreshingAction:@selector(footer)];

    tbv.mj_footer= footer;



}

- (void) GetNetWorking{


    NSURLSession *session = [NSURLSession sharedSession];

    NSString *str3 = [NSString stringWithFormat:@"https://way.jd.com/jisuapi/get?channel=頭條&num=10&start=%d&appkey=54e619938bc38b40151c7bc35a29067e",i];

    NSString *str1 = [str3 stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    NSURLSessionDataTask*task = [sessiondataTaskWithURL:[NSURLURLWithString:str1]completionHandler:^(NSData*_Nullabledata,NSURLResponse*_Nullableresponse,NSError*_Nullableerror) {


        // JSON解析

        dic = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];

        dispatch_async(dispatch_get_main_queue(), ^{

            // 重新整理表格

            [tbvreloadData];

        });


    }];

    // 開始請求

    [taskresume];

}

// 實現下拉重新整理的方法

-  (void) header{


    MBProgressHUD *progress = [MBProgressHUD showHUDAddedTo:self.view animated:YES];

    // 每次開始傳送請求時,都使用MBBrogressHUD顯示Loading視窗

    [progresssetMinShowTime:2];

    // 請求完畢後關閉MBBrogressHUD的載入效果

    [progresshide:YES];


    i = 0;

    [self   GetNetWorking];



    //

    [tbv.mj_header endRefreshing];

    //

}

// 實現上拉重新整理的方法

-  (void) footer{


    i = i + 1;

    [self   GetNetWorking];


    [tbv.mj_footer endRefreshing];


}

// 實現資料來源方法

// 幾組

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

    return 1;

}

// 幾行

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

    arr = dic[@"result"][@"result"][@"list"];

    returnarr.count;

}

// 設定cell內容

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

    staticNSString*str =@"cell";

    myTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:str];

    if(!cell) {

        cell = [[[NSBundle mainBundle]loadNibNamed:@"myTableViewCell" owner:self options:nil]firstObject];

    }



    //    將解析到的標題和時間顯示到UITableView上

    NSDictionary*dic1 =arr[indexPath.row];

    cell.title.text= dic1[@"title"];

    // 自動換行

    cell.title.numberOfLines=0;

    // 新增時間

    cell.time.text= dic1[@"time"];

    // 時間居中

    cell.time.textAlignment = NSTextAlignmentCenter;

    // 請求資料後,提示使用者資料請求成功或失敗

    cell.succ.text=dic[@"msg"];


    // 使用SDWebImage,將圖片顯示到UITableView上

    NSString*str2 = dic1[@"pic"];

    NSURL*url = [NSURLURLWithString:str2];

    [cell.imgV sd_setImageWithURL:url];


    returncell;

}

@ end

相關文章