#import "ViewController.h"
#import "HeaderView.h"
#import "FooterView.h" @interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegate>//提供数据源协议,提供用户交互操作协议 @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"集合视图";
//UICollectionView 集合视图、支持竖直和水平方向滑动
UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
UICollectionView * collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:layout];
[self.view addSubview:collectionView];
//为它配置属性
//为layout 配置属性
//设置每一个 item 的大小 (每一个小图的大小哦)
layout.itemSize = CGSizeMake(, );
//配置底层边界大小,缩进量(上、下、左、右)
layout.sectionInset = UIEdgeInsetsMake(, , , );
//设置每一行cell的最小的间距
layout.minimumLineSpacing = ;
//设置item 的最小间距
layout.minimumInteritemSpacing = ;
//设置滑动方向
layout.scrollDirection = UICollectionViewScrollDirectionVertical;
[self.view addSubview:collectionView];
//配置代理
collectionView.delegate = self;
//配置数据源
collectionView.dataSource = self;
//设置页眉页脚
layout.headerReferenceSize = CGSizeMake(, );
layout.footerReferenceSize = CGSizeMake(, );
//设置背景颜色
collectionView.backgroundColor = [UIColor blackColor];
[layout release];
[collectionView release]; //注册系统提供的 cell
[collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"reues"];
[self regesiterCell];//注册 cell
} -(void)regesiterCell{ }
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark----提供数据源
//提供分区的 item 数目 <必须实现>
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return ;
}
//提供分区的个数。默认是一个分区 //返回 cell <必须实现>
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
//要先注册 cell
UICollectionViewCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"reues" forIndexPath:indexPath];
cell.backgroundColor = [UIColor orangeColor];
//注册页眉
[collectionView registerClass:[HeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headercell"];
[collectionView registerClass:[FooterView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footercell"];
return cell;
}
//返回对应页眉的视图
-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
//返回对应的页眉
HeaderView * hview = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"headercell" forIndexPath:indexPath];
hview.titleLabel.text = @"页眉";
hview.titleLabel.tintColor = [UIColor whiteColor];
return hview;
}else{
//返回页脚
FooterView * fview = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footercell" forIndexPath:indexPath];
fview.titleLabel.text = @"页脚";
return fview;
}
} //设置分区的数目
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return ;
} #pragma mark----处理用户交互的协议
//点击每一个 item 进入不同的页面
//选中每一个 Item 时候出发的方法,可以进行页面的跳转,或者 push 到某一个界面
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
//分区位置(Section) 以及所在分区第几个的位置(row)
NSLog(@"%ld %ld",(long)indexPath.item,(long)indexPath.row);
NSLog(@"%ld %ld",(long)indexPath.section,(long)indexPath.row);
}

UICollectionView基础知识

用layout 配置相同风格的cell .用 协议的方法可以动态的配置想要的 cell 风格.

在使用 UIcollectionView 的时候,对应要注册的 cell 是一个UIcollectionViewCell 的对象

1.瀑布流的效果,根据自己的需求配置相关的属性。

2.我们经常使用的第三方类,(需要我们使用 pod 命令引入)如 :AFNetworking、FMDB、MBProgressHUD、SDWebImage 等等。

 代码:
———————————————————————————————————————————————(.h文件)

———————————————————————————————————————————————(.m文件)

#import "AppDelegate.h"
#import "ViewController.h" @interface AppDelegate () @end @implementation AppDelegate
-(void)dealloc{
[_window release];
[super dealloc];
} - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible]; ViewController * VC = [[ViewController alloc]init];
UINavigationController * navl = [[UINavigationController alloc]initWithRootViewController:VC];
self.window.rootViewController = navl;
[VC release];
[navl release]; return YES;
}

Appdelegate文件

———————————————————————————————————————————————(.h文件)

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

———————————————————————————————————————————————(.m文件)

#import "ViewController.h"
#import "HeaderView.h"
#import "FooterView.h"
#import "CollectionViewCell.h" @interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>//提供数据源协议,提供用户交互操作协议 @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"集合视图";
//UICollectionView 集合视图、支持竖直和水平方向滑动
UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
UICollectionView * collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:layout];
[self.view addSubview:collectionView];
//为它配置属性
//为layout 配置属性
//设置每一个 item 的大小 (每一个小图的大小哦)
layout.itemSize = CGSizeMake(, );
//配置底层边界大小,缩进量(上、下、左、右)
layout.sectionInset = UIEdgeInsetsMake(, , , );
//设置每一行cell的最小的间距
layout.minimumLineSpacing = ;
//设置item 的最小间距
layout.minimumInteritemSpacing = ;
//设置滑动方向
layout.scrollDirection = UICollectionViewScrollDirectionVertical;
[self.view addSubview:collectionView];
//配置代理
collectionView.delegate = self;
//配置数据源
collectionView.dataSource = self;
//设置页眉页脚
layout.headerReferenceSize = CGSizeMake(, );
layout.footerReferenceSize = CGSizeMake(, );
//设置背景颜色
collectionView.backgroundColor = [UIColor blackColor];
[layout release];
[collectionView release]; //注册系统提供的 cell
[collectionView registerClass:[CollectionViewCell class] forCellWithReuseIdentifier:@"reues"];
[self regesiterCell];//注册 cell
} -(void)regesiterCell{ }
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark----提供数据源
//提供分区的 item 数目 <必须实现>
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return ;
}
//提供分区的个数。默认是一个分区 //返回 cell <必须实现>
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
//要先注册 cell
CollectionViewCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"reues" forIndexPath:indexPath];
cell.backgroundColor = [UIColor orangeColor];
cell.imageview.frame =cell.bounds;
cell.label.frame = CGRectMake(, cell.frame.size.height - , cell.frame.size.width, );
//注册页眉
[collectionView registerClass:[HeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headercell"];
[collectionView registerClass:[FooterView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footercell"];
return cell;
}
//返回对应页眉的视图
-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
//返回对应的页眉
HeaderView * hview = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"headercell" forIndexPath:indexPath];
hview.titleLabel.text = @"页眉";
hview.titleLabel.tintColor = [UIColor whiteColor];
return hview;
}else{
//返回页脚
FooterView * fview = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footercell" forIndexPath:indexPath];
fview.titleLabel.text = @"页脚";
return fview;
}
} //设置分区的数目
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return ;
} #pragma mark----处理用户交互的协议
//点击每一个 item 进入不同的页面
//选中每一个 Item 时候出发的方法,可以进行页面的跳转,或者 push 到某一个界面
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
//分区位置(Section) 以及所在分区第几个的位置(row)
NSLog(@"%ld %ld",(long)indexPath.item,(long)indexPath.row);
NSLog(@"%ld %ld",(long)indexPath.section,(long)indexPath.row);
} #pragma mark ------配置 cell 的协议
//动态的配置 cell 要实现的协议
//动态的配置每个分区的 item 的 size 大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
//每次创键一个 item 都要执行该方法,页面会自己计算如何放置
if (indexPath.section == ) {
return CGSizeMake(, );
}
return CGSizeMake(, );
}
//页面的缩进量。是一个结构体
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
//动态的为每一个分区去配置他的缩进量
if (section == ) {
return UIEdgeInsetsMake(, , , );
}
return UIEdgeInsetsMake(, , , );
}
//动态配置 item 之间最小的间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{
return section == ? : ;
}
//动态设置 item 最小的行间值
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
return ;
}
//动态设置页眉的大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{
if (section == ) {
return CGSizeMake(self.view.frame.size.width, );
}
if (section == ) {
return CGSizeMake(self.view.frame.size.width, );
}
return CGSizeMake(self.view.frame.size.width, );
}
//动态设置页脚的大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{
if (section == ) {
return CGSizeMake(self.view.frame.size.width, );
}
if (section == ) {
return CGSizeMake(self.view.frame.size.width, );
}
return CGSizeMake(self.view.frame.size.width, );
}
/*
#pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/ @end

ViewController文件

———————————————————————————————————————————————(.h文件)

#import <UIKit/UIKit.h>

@interface CollectionViewCell : UICollectionViewCell
@property(nonatomic,retain)UIImageView * imageview;
@property(nonatomic,retain)UILabel * label;
@end ———————————————————————————————————————————————(.m文件) #import "CollectionViewCell.h" //自定义的cell
@implementation CollectionViewCell -(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
[self.contentView addSubview:self.imageview];
[self.contentView addSubview:self.label];
}
return self;
}
-(UIImageView *)imageview{
if (!_imageview) {
self.imageview = [[UIImageView alloc]initWithFrame:CGRectMake(, , self.frame.size.width, self.frame.size.height - )];
[_imageview setImage:[UIImage imageNamed:@""]];
}
return [[_imageview retain]autorelease];
}
-(UILabel *)label{
if (!_label) {
self.label = [[UILabel alloc]initWithFrame:CGRectMake(, self.frame.size.height - , self.frame.size.width, )];
_label.backgroundColor = [UIColor brownColor];
_label.text = @"自定义cell 的 Label ";
}
return [[_label retain]autorelease];
}
@end

CollectionViewCell文件

———————————————————————————————————————————————(.h文件)

#import <UIKit/UIKit.h>

@interface HeaderView : UICollectionReusableView
@property(nonatomic,retain)UILabel * titleLabel;
@end ———————————————————————————————————————————————(.m文件) #import "HeaderView.h" @implementation HeaderView -(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
//分区的页眉根据需要去设置 可为 Label 视图 等等
[self addSubview:self.titleLabel];
}
return self;
} -(UILabel *)titleLabel{
if (!_titleLabel) {
self.titleLabel = [[UILabel alloc]initWithFrame:self.bounds];
_titleLabel.textColor = [UIColor blackColor];
_titleLabel.backgroundColor = [UIColor whiteColor];
_titleLabel.textAlignment = UITextAlignmentCenter;
}
return [[_titleLabel retain]autorelease];
}
-(void)dealloc{
self.titleLabel = nil;
[super dealloc];
}
@end

HeaderView文件

———————————————————————————————————————————————(.h文件)
#import <UIKit/UIKit.h> @interface FooterView : UICollectionReusableView
@property(nonatomic,retain)UILabel * titleLabel;
@end ———————————————————————————————————————————————(.m文件) #import "FooterView.h" @implementation FooterView
-(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
//分区的页眉根据需要去设置 可为 Label 视图 等等
[self addSubview:self.titleLabel];
}
return self;
} -(UILabel *)titleLabel{
if (!_titleLabel) {
self.titleLabel = [[UILabel alloc]initWithFrame:self.bounds];
_titleLabel.textColor = [UIColor blackColor];
_titleLabel.textAlignment = UITextAlignmentCenter;
_titleLabel.backgroundColor = [UIColor brownColor];
}
return [[_titleLabel retain]autorelease]; }
-(void)dealloc{
self.titleLabel = nil;
[super dealloc];
}
@end

FooterView文件

在解析JSON数据的时候注意,截取字符串后需要用一个字符串对象接收一下。

本项目的字典的操作,出现的问题。
     [_dicBase setObject:rating  forKey:@"rating"];//rating 是从上面传来的字符串对象 这样写并没有存入字典

[_dicBase setDictionary:@{@"sdg":@"dfg"}];//这样就存入了字典

[_dicBase setDictionary:@{@"title":title}];//存入字典成功

代码:

———————————————————————————————————————————————(.h文件)

———————————————————————————————————————————————(.m文件)

#import "AppDelegate.h"
#import "MoveListViewController.h" @interface AppDelegate () @end @implementation AppDelegate
-(void)dealloc{
[_window release];
[super dealloc];
} - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible]; MoveListViewController * moveVC = [[MoveListViewController alloc]init];
UINavigationController * navl = [[UINavigationController alloc]initWithRootViewController:moveVC];
self.window.rootViewController = navl; [navl release];
[moveVC release]; return YES;
}

Appdelegate文件

———————————————————————————————————————————————(.h文件)

#import <UIKit/UIKit.h>

@interface MoveListViewController : UIViewController

@end

———————————————————————————————————————————————(.m文件)

#define kMovieListUrl @"http://api.douban.com/v2/movie/nowplaying?app_name=doubanmovie&client=e:iPhone4,1%7Cy:iPhoneOS_6.1%7Cs:mobile%7Cf:doubanmovie_2%7Cv:3.3.1%7Cm:PP_market%7Cudid:aa1b815b8a4d1e961347304e74b9f9593d95e1c5&alt=json&city=%E5%8C%97%E4%BA%ACversion=2&apikey=0df993c66c0c636e29ecbb5344252a4a"
#import "MoveListViewController.h"
#import "AFNetworking.h"
#import "model.h"
#import "UIImageView+WebCache.h"//第三方异步缓存机制
#import "MoveCell.h"
#import "MBProgressHUD.h"
#import "DetailViewController.h" //豆瓣的电影这一个模块
@interface MoveListViewController ()<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>
@property(nonatomic,retain)UICollectionView * collectionView;
@property(nonatomic,retain)NSMutableArray * dataSource;//存放数据源 @end @implementation MoveListViewController -(NSMutableArray *)dataSource{
if (!_dataSource) {
self.dataSource = [NSMutableArray arrayWithCapacity:];
}
return _dataSource;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"电影页面";
[self sublayView];//布局页面
self.navigationController.navigationBar.translucent = NO;
} -(void)sublayView{
UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
self.collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:layout];
//设置代理
self.collectionView.delegate = self;
self.collectionView.dataSource = self;
//设置 item 的大小尺寸
layout.itemSize = CGSizeMake((self.view.frame.size.width - )/, );
layout.minimumInteritemSpacing = ;
layout.minimumLineSpacing = ;
self.collectionView.backgroundColor = [UIColor whiteColor];
//提供数据源和交互
//注册 cell
[self.collectionView registerClass:[MoveCell class] forCellWithReuseIdentifier:@"reues"];
//缩进值
layout.sectionInset = UIEdgeInsetsMake(, , , );
//请求数据
[self requeData];
[self.view addSubview:self.collectionView];
}
//请求数据
-(void)requeData{
//显示透明指示框
[MBProgressHUD showHUDAddedTo:self.view animated:YES];
AFHTTPRequestOperationManager * manage = [AFHTTPRequestOperationManager manager];
__block MoveListViewController * vc = self;
[manage GET:kMovieListUrl parameters:nil success: ^void(AFHTTPRequestOperation * operatioon, id responseObject) {
[vc parseData:responseObject];
} failure:^void(AFHTTPRequestOperation * operatioon, NSError * error) {
NSLog(@"%@",error);
}];
} -(void)parseData:(NSDictionary *)dic{
//隐藏指示框
[MBProgressHUD hideAllHUDsForView:self.view animated:YES];
NSArray * arr = dic[@"entries"];
for (NSDictionary * dd in arr) {
model * mm = [[model alloc]initWithDIc:dd];
[self.dataSource addObject:mm];
[mm release];
}
[self.collectionView reloadData];//
}
#pragma mark----设置数据源
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return self.dataSource.count;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
MoveCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"reues" forIndexPath:indexPath];
model * per = self.dataSource[indexPath.item];//写成 row 也可以
cell.titleLabel.text = per.title;
cell.posterView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:per.imageUrl]]];
return cell;
}
#pragma mark-----处理点击事件
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
DetailViewController * detailVc =[[DetailViewController alloc]init];
model * move = self.dataSource[indexPath.item];
detailVc.idStr = move.ID;
detailVc.moveTitle = move.title;
[self.navigationController pushViewController:detailVc animated:YES]; }
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
} /*
#pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/ @end

MoveListViewController文件

———————————————————————————————————————————————(.h文件)
#import <UIKit/UIKit.h> @interface DetailViewController : UIViewController
@property(nonatomic,copy)NSString * idStr;
@property(nonatomic,copy)NSString * moveTitle;//不能取名为title 因为导航栏有一个 title
@end ———————————————————————————————————————————————(.m文件) #define kMovieDetailUrl @"http://api.douban.com/v2/movie/subject/" #import "DetailViewController.h"
#import "MoveDetailView.h"
#import "AFNetworking.h" @interface DetailViewController ()
@property(nonatomic,retain)NSMutableArray * dataSource;
@property(nonatomic,retain)NSMutableDictionary * dicBase;//用于存储数据,方便收藏
@end @implementation DetailViewController -(NSMutableArray *)dataSource{
if (!_dataSource) {
self.dataSource = [NSMutableArray arrayWithCapacity:];
}
return _dataSource;
}
-(void)loadView{
MoveDetailView * detalView = [[MoveDetailView alloc]init];
self.view = detalView;//不用再继承父类的方法,就是不用再去创建根视图
[detalView release];
}
- (void)viewDidLoad {
[super viewDidLoad];
//指定根视图,然后再去请求网络数据
[self customizedNav];//私有导航条
[self requestData];//请求数据
} -(void)customizedNav{
UIBarButtonItem * left = [[UIBarButtonItem alloc]initWithTitle:@"返回" style:UIBarButtonItemStylePlain target:self action:@selector(handleBack:)];
self.navigationItem.leftBarButtonItem = left;
[left release]; UIBarButtonItem * right = [[UIBarButtonItem alloc]initWithTitle:@"收藏" style:UIBarButtonItemStylePlain target:self action:@selector(handleCollect:)];
self.navigationItem.rightBarButtonItem = right;
[right release]; self.navigationItem.title = self.moveTitle;
}
//返回操作按钮
-(void)handleBack:(UIBarButtonItem *)sender{
[self.navigationController popViewControllerAnimated:YES];
}
//收藏操作按钮
-(void)handleCollect:(UIBarButtonItem *)sender{ }
//请求数据
-(void)requestData{
AFHTTPRequestOperationManager * manage = [AFHTTPRequestOperationManager manager];
NSString * strUrl = [kMovieDetailUrl stringByAppendingString:self.idStr];
[manage GET:strUrl parameters:nil success:^void(AFHTTPRequestOperation * operation, id responsObject) {
//处理解析的数据
[self praseWithData:responsObject];
// NSLog(@"%@",responsObject);
} failure:^void(AFHTTPRequestOperation * operation, NSError * error) {
NSLog(@"%@",error);
}]; }
-(void)praseWithData:(NSDictionary *)dic{
NSString * title = dic[@"title"];
NSString * rating_count = [[dic[@"ratings_count"] stringValue] stringByAppendingString:@"人评论"];
NSNumberFormatter * numberFormater = [[NSNumberFormatter alloc]init];
NSString * date =[[numberFormater stringFromNumber:dic[@"year"]] stringByAppendingString:@"年上映"];
NSString * imageUrl = dic[@"images"][@"medium"];
NSString * content = dic[@"summary"];
NSString * time = dic[@"durations"];
//对电影的类别的处理
NSMutableString * type = [NSMutableString stringWithString:@""];
for (NSString * str in dic[@"genres"]) {
[type appendFormat:@"%@、",str];
}
NSString * strType = [type substringToIndex:(type.length-)];
//电影的产地处理
NSMutableString * address = [NSMutableString stringWithString:@""];
for (NSString * str in dic[@"countries"]) {
[address appendFormat:@"%@、",str];
}
NSString * addressStr = [address substringToIndex:(address.length-)]; //评分
NSString * rating = [NSString stringWithFormat:@"评分:%@",dic[@"rating"][@"average"]]; if (time.length > ) {
[(MoveDetailView *)self.view configureWithImage:imageUrl rating:rating ratingNum:rating_count ptime:[NSString stringWithFormat:@"2015年最新上映"] time:time general:strType countries:addressStr summary:content];
}else{
[(MoveDetailView *)self.view configureWithImage:imageUrl rating:rating ratingNum:rating_count ptime:[NSString stringWithFormat:@"2015年最新上映"] time:@"没有找到数据" general:strType countries:addressStr summary:content];
}
//保存到字典方便存储数据库
self.dicBase = [[NSMutableDictionary alloc]init];
//下面不能存入字典
// [_dicBase setObject:title forKey:@"title"];
// [_dicBase setObject:rating_count forKey:@"ratings_count"];
// [_dicBase setObject:[NSString stringWithFormat:@"2015年最新上映"] forKey:@"pubdate"];
// [_dicBase setObject:imageUrl forKey:@"imageUrl"];
// [_dicBase setObject:content forKey:@"summary"];
// [_dicBase setObject:addressStr forKey:@"address"];
// [_dicBase setObject:strType forKey:@"type"];
// [_dicBase setObject:rating forKey:@"rating"];
//下面存入字典了
[_dicBase setDictionary:@{@"title":title}];
[_dicBase setDictionary:@{@"ratings_count":rating_count}];
[_dicBase setDictionary:@{@"imageUrl":imageUrl}];
[_dicBase setDictionary:@{@"summary":content}];
[_dicBase setDictionary:@{@"address":addressStr}];
[_dicBase setDictionary:@{@"type":strType}];
[_dicBase setDictionary:@{@"rating":rating}]; }
-(void)viewDidDisappear:(BOOL)animated{ }
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
} /*
#pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/ @end

DetailViewController文件

———————————————————————————————————————————————(.h文件)

#import <UIKit/UIKit.h>

@interface MoveDetailView : UIView

@property(nonatomic,retain)UIImageView * posterView;
@property(nonatomic,retain)UILabel * rating;
@property(nonatomic,retain)UILabel * rating_count;
@property(nonatomic,retain)UILabel * ptime;
@property(nonatomic,retain)UILabel * time;
@property(nonatomic,retain)UILabel * genernal;
@property(nonatomic,retain)UILabel * conutrise;
@property(nonatomic,retain)UILabel * summary;
@property(nonatomic,retain)UIScrollView * scroll;
//为控件赋值
-(void)configureWithImage:(NSString *)imageUrl
rating:(NSString *)rating
ratingNum:(NSString *)ratingNum
ptime:(NSString *)ptime
time:(NSString *)time
general:(NSString *)genernal
countries:(NSString *)countries
summary:(NSString *)summary;
@end ———————————————————————————————————————————————(.m文件) #define FONTSIZE [UIFont systemFontOfSize:15]
#import "MoveDetailView.h"
#import "UIImageView+WebCache.h"
@implementation MoveDetailView -(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:[[UIScreen mainScreen] bounds]];
if (self) {
[self addSubview:self.scroll];
[self setOtherView];
}
return self;
} -(void)setOtherView{
[self.scroll addSubview:self.posterView];
[self.scroll addSubview:self.rating];
[self.scroll addSubview:self.rating_count];
[self.scroll addSubview:self.ptime];
[self.scroll addSubview:self.time];
[self.scroll addSubview:self.genernal];
[self.scroll addSubview:self.conutrise];
[self.scroll addSubview:self.summary]; //测试yanse
// self.posterView.backgroundColor = [UIColor redColor];
// self.rating_count.backgroundColor = [UIColor grayColor];
// self.rating.backgroundColor = [UIColor blackColor];
// self.ptime.backgroundColor = [UIColor blueColor];
// self.time.backgroundColor = [UIColor yellowColor];
// self.genernal.backgroundColor = [UIColor blackColor];
// self.conutrise.backgroundColor = [UIColor grayColor];
// self.summary.backgroundColor = [UIColor brownColor];
} -(UIScrollView *)scroll{
if (!_scroll) {
self.scroll = [[UIScrollView alloc]initWithFrame:self.bounds];
}
return [[_scroll retain]autorelease];
}
-(UIImageView *)posterView{
if (!_posterView) {
self.posterView = [[UIImageView alloc]initWithFrame:CGRectMake(, , , )];
}
return [[_posterView retain]autorelease];
}
-(UILabel *)rating{
if (!_rating) {
self.rating = [[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.rating.font = FONTSIZE;
}
return [[_rating retain]autorelease];
}
-(UILabel *)rating_count{
if (!_rating_count) {
self.rating_count = [[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.rating_count.font = FONTSIZE;
}
return [[_rating_count retain]autorelease];
}
-(UILabel *)ptime{
if (!_ptime) {
self.ptime =[[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.ptime.font = FONTSIZE;
}
return [[_ptime retain]autorelease];
}
-(UILabel *)time{
if (!_time) {
self.time = [[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.time.font = FONTSIZE;
}
return [[_time retain]autorelease];
}
-(UILabel *)genernal{
if (!_genernal) {
self.genernal = [[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.genernal.font = FONTSIZE;
}
return [[_genernal retain]autorelease];
}
-(UILabel *)conutrise{
if (!_conutrise) {
self.conutrise = [[UILabel alloc]initWithFrame:CGRectMake(, , , )];
self.conutrise.font = FONTSIZE;
}
return [[_conutrise retain]autorelease];
}
-(UILabel *)summary{
if (!_summary) {
self.summary = [[UILabel alloc]init];
_summary.numberOfLines = ;//换行
}
return [[_summary retain]autorelease];
}
//计算文本的自适应高度
-(CGFloat)heightWithContent:(NSString *)summary{
NSDictionary * dic = @{NSFontAttributeName:[UIFont systemFontOfSize:]};
return [summary boundingRectWithSize:CGSizeMake(self.frame.size.width, ) options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading attributes:dic context:nil].size.height;
} //为控件赋值
-(void)configureWithImage:(NSString *)imageUrl
rating:(NSString *)rating
ratingNum:(NSString *)ratingNum
ptime:(NSString *)ptime
time:(NSString *)time
general:(NSString *)genernal
countries:(NSString *)countries
summary:(NSString *)summary{
//重新设置 frame
self.summary.frame = CGRectMake(, , self.frame.size.width - , [self heightWithContent:summary]);
//scroll 自适应高度
self.scroll.contentSize = CGSizeMake(self.frame.size.width, [self heightWithContent:summary] + );//加上
[self.posterView sd_setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"1.jpeg"]];
self.rating.text = rating;
self.rating_count.text = ratingNum;
self.ptime.text = ptime;
self.genernal.text = genernal;
self.conutrise.text = countries;
self.summary.text = summary;
self.time.text = time;
}

MoveDetailView文件

———————————————————————————————————————————————(.h文件)
#import <UIKit/UIKit.h>
@class model; @interface MoveCell : UICollectionViewCell
@property(nonatomic,retain)UIImageView * posterView;
@property(nonatomic,retain)UILabel * titleLabel;
@property(nonatomic,retain)model * permodel;
@end ———————————————————————————————————————————————(.m文件) #import "MoveCell.h"
#import "model.h"
#import "UIImageView+WebCache.h"
@implementation MoveCell
-(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
[self.contentView addSubview:self.posterView];
[self.contentView addSubview:self.titleLabel];
}
return self;
}
-(UIImageView *)posterView{
if (!_posterView) {
self.posterView =[[UIImageView alloc]initWithFrame:CGRectMake(,,self.frame.size.width, self.frame.size.height - )];
}
return [[_posterView retain]autorelease];
}
-(UILabel *)titleLabel{
if (!_titleLabel) {
self.titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(, self.frame.size.height - , self.frame.size.width, )];
self.titleLabel.textAlignment = UITextAlignmentCenter;
_titleLabel.font = [UIFont systemFontOfSize:];
}
return [[_titleLabel retain]autorelease];
} -(void)setPermodel:(model *)permodel{
if (_permodel != permodel ) {
[_permodel release];
_permodel = [permodel retain];
}
[self.posterView sd_setImageWithURL:[NSURL URLWithString:permodel.imageUrl] placeholderImage:@""];
}
@end

MoveCell文件

———————————————————————————————————————————————(.h文件)

#import <Foundation/Foundation.h>

@interface model : NSObject
@property(nonatomic,copy)NSString * ID;
@property(nonatomic,copy)NSString * title;
@property(nonatomic,copy)NSString * imageUrl; -(instancetype)initWithDIc:(NSDictionary *)dic;
@end ———————————————————————————————————————————————(.m文件) #import "model.h" @implementation model
-(instancetype)initWithDIc:(NSDictionary *)dic{
self = [super init];
if (self) {
[self setValuesForKeysWithDictionary:dic];
}
return self;
}
-(void)setValue:(id)value forUndefinedKey:(NSString *)key{
//处理找不到的属性
if ([key isEqualToString:@"id"]) {
self.ID = value;
}
if ([key isEqualToString:@"images"]) {
self.imageUrl = value[@"medium"];
}
}

model文件

———————————————————————————————————————————————(.h文件)

#import <Foundation/Foundation.h>

@interface SqlHelper : NSObject
//创建一个单例方法
+(SqlHelper *)defaultSqlHelper;
//创建用于存储数据的属性字段
//@property(nonatomic,copy)NSString *
@end ———————————————————————————————————————————————(.m文件) #import "SqlHelper.h"
#import "FMDB.h" @implementation SqlHelper static SqlHelper * helper = nil;
+(SqlHelper *)defaultSqlHelper{
@synchronized(self){
if (!helper) {
helper = [[SqlHelper alloc]init];
[self creatDataBaseWithTab];//创建数据库
}
}
return helper;
} +(void)creatDataBaseWithTab{
FMDatabase * fmdb = [FMDatabase databaseWithPath:[self getPath]];
if (!fmdb) {
NSLog(@"数据库已经创建或者已经存在");
}
}
+(NSString *)getPath{
return [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)firstObject] stringByAppendingPathComponent:@"DataBase1006.sqlite"];
}
@end

SqlHelper文件

上面代码中,对于收藏功能没有完成,用本地数据库存储暂时没有实现

UI:UICollectionView的更多相关文章

  1. iOS6新特征:UICollectionView介绍

    http://blog.csdn.net/eqera/article/details/8134986 1.1. Collection View 全家福: UICollectionView, UITab ...

  2. [转载]iOS6新特征:UICollectionView官方使用示例代码研究

    原文地址:iOS6新特征:UICollectionView官方使用示例代码研究作者:浪友dans 注:这里是iOS6新特征汇总贴链接 iOS6新特征:参考资料和示例汇总 这个链接可以学习到UIColl ...

  3. [iOS]技巧集锦:UICollectionView内容下沉64像素原因和解决方案

    现象 UICollectionView的内容在按Home键再回到APP时,会下沉64像素. 原因 页面有NavigationBar,正好是64像素,Controller勾选了Adjust Scroll ...

  4. iOS6新特征:UICollectionView高级使用示例之CircleLayout

    DEMO   下面再看看Demo运行的效果图,通过这样的一个Demo,我们可以看出,使用UICollectionView可以很方便的制作出照片浏览等应用.并且需要开发者写的代码也不多.   程序刚刚启 ...

  5. UI:UITableView 编辑、cell重用机制

    tableView编辑.tableView移动.UITableViewController tableView的编辑:cell的添加.删除. 使⽤场景: 删除⼀个下载好的视频,删除联系⼈: 插⼊⼀条新 ...

  6. UI:基础

    App的生命周期 参考 多态的使用 // // main.m #import <Foundation/Foundation.h> #import "SingleDog.h&quo ...

  7. Android UI:机智的远程动态更新策略

    问题描述 做过Android开发的人都遇到过这样的问题:随着需求的变化,某些入口界面通常会出现 UI的增加.减少.内容变化.以及跳转界面发生变化等问题.每次发生变化都要手动修改代码,而入口界面通常具有 ...

  8. Vue UI:Vue开发者必不可少的工具

    译者按: Vue开发工具越来越好用了! 原文: Vue UI: A First Look 译者: Fundebug 本文采用意译,版权归原作者所有 随着最新的稳定版本Vue CLI 3即将发布,是时候 ...

  9. android UI:Fragment碎片

    碎片(Fragment) 嵌入与活动中的UI片段,为了合理的分配布局而存在,这是我的简单理解.多用于兼顾手机与平板的UI,也适用于灵活高级的UI制作. Demo 简单的按键切换两片不同的Demo 新建 ...

随机推荐

  1. 服务器Out of Memory

    之前有次把图片存储在数据库,结果读取时候报错了:Out of Memory.. 图片本来不应该存储在数据库中的,消耗内存太大,既然已经这样,那就先解决问题,不改存储方式. 如果一个应用程序为了提高性能 ...

  2. nginx配置初步

    nginx配置初步 1,切换至nginx目录,找到配置文件目录 cd /etc/nginx/conf.d 2,拷贝一份conf文件 sudo cp default.conf head.conf 3,进 ...

  3. window7_64安装STAF

    1.       安装包下载 从http://sourceforge.net/projects/staf/files/staf/V3.4.17/下载所需安装包,有Windows.Linux.Solar ...

  4. Dubbo简单介绍及实例

    1.概念 Dubbo是一个分布式服务框架,以及阿里巴巴内部的SOA服务化治理方案的核心框架.其功能主要包含:高性能NIO通讯及多协议集成.服务动态寻址与路由.软负载均衡与容错,依赖分析与降级等. 说通 ...

  5. poj1870--Bee Breeding(模拟)

    题目链接:点击打开链接 题目大意:给出一个蜂窝,也就是有六边形组成,从内向外不断的循环(如图).给出两个数的值u,v按六边形的走法,由中心向六个角走.问由u到v的的最小步数. 首先处理处每个数的坐标, ...

  6. hdu 2795(单点改动)

    题意:有h×w大的公告板.有n条公告要写入,每条公告高度都是1,宽度是wi,每次从最上最左的空位写,假设有空位输出第几行.假设没有足够空位输出-1. 题解:注意h最大1e9.但事实上是看n的大小.由于 ...

  7. C++再论单例模式

    #include <iostream> #include <windows.h> #include <mutex> std::mutex gmutex; using ...

  8. OC小实例关于init 方法不小心的错误

    OC小实例关于init 方法不小心的错误  正视遇到的每一个错误 在一个遥控器类操控小车玩具的小实例项目中,我采用组合的方式,将遥控器拥有小汽车对象(has a)关系,而不是继承(is a)关系. 想 ...

  9. 翻译:A Tutorial on the Device Tree (Zynq) -- Part II

    A Tutorial on the Device Tree (Zynq) -- Part II 设备树结构 Zynq的设备树如下: /dts-v1/; / { #address-cells = < ...

  10. 项目Alpha冲刺(团队10/10)

    项目Alpha冲刺(团队10/10) 团队名称: 云打印 作业要求: 项目Alpha冲刺(团队) 作业目标: 完成项目Alpha版本 团队队员 队员学号 队员姓名 个人博客地址 备注 22160041 ...