iOS入门-43SDWebImage图片加载库

概述

重点

  • AFNetworking加载网络数据
  • SDWebImage加载网络图片
  • UITableview列表使用

实际操作过程中注意

  • 设置导航栏、根视图控制器
  • http协议如何配置使其能被使用
  • CocoaPosd配置第三方库

示例

配置http可以使用

iOS 9.0由于强制使用https , 所以之前使用的 http的连接 的应用如果不做特殊配制就都不可以运行了,为了解决这个问题要在工程的info.plit中添加如下配制。
在这里插入图片描述

引入第三方库参考“CocoaPods安装使用”

先看一下最终效果

iOS入门-43SDWebImage图片加载库_第1张图片

示例代码:

AppDelegate.h

#import 
@interface AppDelegate : UIResponder 

@property (retain,nonatomic) UIWindow* window;

@end

AppDelegate.m

#import "AppDelegate.h"
#import "ViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    //设置导航栏,根视图控制器
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    ViewController* vc = [ViewController new];
    UINavigationController* navC = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = navC;
    [self.window makeKeyAndVisible];
    
    return YES;
}

@end

ViewController.h

#import 
//UITableViewDelegate,UITableViewDataSource:列表控件涉及的两个代理类,实现他们
@interface ViewController : UIViewController 
{
    //列表控件
    UITableView* _tableView;
    //数据源
    NSMutableArray* _arrayData;
    //加载按钮
    UIBarButtonItem* _btnLoadData;
    //编辑按钮
    UIBarButtonItem* _btnEdit;
}

@end

ViewController.m

#import "ViewController.h"
#import "AFNetworking.h"
#import "UIImageview+WebCache.h"
#import "Program.h"


@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    self.title = @"SDwebImage demo";
    //创建列表视图控件
    _tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    //设置代理
    _tableView.delegate = self;
    _tableView.dataSource = self;
    //设置自动调整尺寸
    _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
    
    //模拟数据
    _arrayData = [NSMutableArray new];
    
    [self.view addSubview:_tableView];
    
    //数据加载按钮
    _btnLoadData = [[UIBarButtonItem alloc] initWithTitle:@"加载" style:UIBarButtonItemStylePlain target:self action:@selector(pressLoad)];
    self.navigationItem.rightBarButtonItem = _btnLoadData;
}

//点击按钮数据加载
-(void) pressLoad{
    [self loadDataFromNet];
}

//加载网络数据
-(void)loadDataFromNet{
    NSString* url = @"你的url地址";
    
    //使用AFNetworking进行网络请求
    AFHTTPSessionManager* session = [AFHTTPSessionManager manager];
    session.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/html",@"text/json", @"text/javascript", nil];
    [session GET:url parameters:nil headers:nil progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        NSLog(@"成功了");
        
        if ([responseObject isKindOfClass:[NSDictionary class]]) {
            NSLog(@"rootDic==%@",responseObject);
            [self parseData:responseObject];
        }
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        NSLog(@"失败了");
    }];
}

//解析网络数据:下面是手动一个一个来解析的,解析完成加入容器数组中
-(void)parseData:(NSDictionary*)dic{
    NSArray* arrayCategories = [dic objectForKey:@"categories"];
    
    NSDictionary* dicDategory = arrayCategories[1];
        
    NSArray* arrayDetail = [dicDategory objectForKey:@"detail"];
    
    for (int i=0; i

Program.h

#import 

NS_ASSUME_NONNULL_BEGIN

@interface Program : NSObject

@property(retain,nonatomic) NSString* mName;
@property(retain,nonatomic) NSString* mImageUrl;

@end

NS_ASSUME_NONNULL_END

json数据结构如下

{
    "categories": [
        {
            "id": "",
            "detail": [
                {
                    "id": "1",
                    "name": "哈哈哈",
                    "other_info7": "图片url"
                } 
             ]      
         },
         {
            "id": "",
            "detail": [
                {
                    "id": "222",
                    "name": "呵呵呵",
                    "other_info7": "图片url"
                } ,
                。。。。。省略。。。。。
             ]       
         },          
      ]              
 }                   

你可能感兴趣的:(iOS)