#import "YCViewController.h"
#import "YCmodel.h"
#import "YCTableViewCell.h"
#import "MBProgressHUD.h"
#import "MJRefresh.h"
#import "AFNetworking.h"
#import "MJExtension.h"
#import "UIImageView+WebCache.h"
#import "YanchuangViewController.h"
@interface YCViewController ()<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic,strong)UITableView * tab;
//可变数组
@property(nonatomic,strong)NSMutableArray * aray;
@end
@implementation YCViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.aray=[[NSMutableArray alloc]init];
self.tab=[[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];
self.tab.delegate=self;
self.tab.dataSource=self;
[self.tab registerNib:[UINib nibWithNibName:@"LXTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell"];
[self.view addSubview:self.tab];
[self AFNet];
}
-(void)AFNet{
AFHTTPSessionManager * manager = [AFHTTPSessionManager manager];
[manager GET:@"http://c.m.163.com/nc/article/list/T1348648517839/0-20.html" parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) {
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"%@",responseObject);
NSArray *aray = responseObject[@"T1348648517839"];
for(NSDictionary * dic in aray){
YCmodel * model =[[YCmodel alloc ]init];
[model setValuesForKeysWithDictionary:dic];
[self.aray addObject:model];
}
// dispatch_async(dispatch_get_main_queue(), ^{
[self.tab reloadData];
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
}];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.aray.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
YCTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
[cell loadDataFromModel:self.aray[indexPath.row]];
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
YanchuangViewController * first =[ YanchuangViewController new];
YCmodel * model = self.aray[indexPath.row];
first.urstring = model.url;
[self.navigationController pushViewController:first animated:YES];
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 150;
}
解析 + 网络请求
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
- 前言 最近忙完项目比较闲,想写一篇博客来分享一些自学iOS的心得体会,希望对迷茫的你有所帮助。博主非科班出身,一些...