UICollectionView

集合视图的概念
如何创建UICollectionView
集合视图的布局UICollectionViewFlowLayout
自定义cell
布局协议UICollectionViewDelegateFlowLayout

UICollectionView与UITableView的实现类似,都需要设置delegate和dataSource
在collectionView中,cell的布局比tableView要复杂,需要使用一个类来描述集合视图的布局---UICollectionViewLayout->UICollectionViewFlowLayout

创建步骤
1.使用系统布局UICollectionViewFlowLayout
2.创建UICollectionView
3.设置代理,设置数据源
4.设置自定义Cell

数据源
我们需要给collectionView指定一个数据源,它负责给对collectionView提供数据与显示

#import "JYFViewController.h"

#import "Model.h"

#import "MyCell.h"

#import "MyHeader.h"

#import "MyFooter.h"

#import "UIImageView+WebCache.h"


@interface JYFViewController ()<</span>UICollectionViewDataSource,UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>


@property (nonatomic, retain) NSMutableArray *allDataArray;


@end


@implementation JYFViewController


- (void)viewDidLoad

{

    [super viewDidLoad];

// 1.获取文件路径

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Data"ofType:@"json"];

    // 2.读取文件数据

    NSData *data = [NSData dataWithContentsOfFile:filePath];

    // 3.解析数据

    NSArray *array = [NSJSONSerialization JSONObjectWithData:dataoptions:NSJSONReadingAllowFragments error:nil];

    // 4.遍历放入大数组中

    self.allDataArray = [NSMutableArray array];

    for (NSDictionary *dict in array) {

        Model *model = [Model new];

        [model setValuesForKeysWithDictionary:dict];

        [_allDataArray addObject:model];

        [model release];

        NSLog(@"%@"_allDataArray);

    }

    

    

    

    

    

    // 1.创建UICollectionViewFlowLayout

    UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayoutalloc] init];

    

    // 1.1设置每个Item的大小

    flowLayout.itemSize = CGSizeMake(90210);

    

    // 1.2 设置每列最小间距

    flowLayout.minimumInteritemSpacing = 10;

    

    // 1.3设置每行最小间距

    flowLayout.minimumLineSpacing = 10;

    

    // 1.4设置滚动方向

    flowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;

    

    // 1.5设置header区域大小

    flowLayout.headerReferenceSize =CGSizeMake(self.view.bounds.size.width, 50);

    

    // 1.6设置footer区域大小

    flowLayout.footerReferenceSize =CGSizeMake(self.view.bounds.size.width, 50);

    

    // 1.7 设置item内边距大小

    flowLayout.sectionInset = UIEdgeInsetsMake(10101010);

    

    // 2.创建UICollectionView

    UICollectionView *collectionView = [[UICollectionView allocinitWithFrame:self.view.bounds collectionViewLayout:flowLayout];

    

    // 3.设置数据源代理、collection代理

    collectionView.dataSource = self;

    collectionView.delegate = self;

    

    

    [self.view addSubview:collectionView];

    [collectionView release];

    [flowLayout release];

    

    collectionView.backgroundColor = [UIColor colorWithRed:0.895green:1.000 blue:0.656 alpha:1.000];

    

    // 4.注册cell的类型和重用标示符

    [collectionView registerClass:[MyCell class] forCellWithReuseIdentifier:@"cell"];

    // 5.注册footer和header类型的重用标识符

    [collectionView registerClass:[MyHeader class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeaderwithReuseIdentifier:@"headerView"];

    [collectionView registerClass:[MyFooter class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter

              withReuseIdentifier:@"footerView"];

}



#pragma mark - UICollectionViewDataSource Methods

#pragma mark 设置有多少个section

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView*)collectionView

{

    return 5;

}


#pragma mark 设置某个分组有多少行

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

{

    return 13;

}


#pragma mark 设置某个Item显示什么内容

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

{

    // 1.去重用队列中查找

    MyCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

    

    // 2.使用

//    CGFloat red = arc4random()% 256 / 255.0;

//    CGFloat green = arc4random() % 256 / 255.0;

//    CGFloat blue = arc4random() % 256 / 255.0;

//    cell.backgroundColor = [UIColor colorWithRed:red green:green blue:blue alpha:1.0];

    cell.label.text = [NSString stringWithFormat:@"s = %ld r =  %ld", indexPath.section, indexPath.row];


    // 3.获取将要显示的模型

    Model *model = _allDataArray[indexPath.row];

    

    // 4.使用第三方获取图片并自动缓存

    NSURL *imageUrl = [NSURL URLWithString:model.thumbURL];

    [cell.imageView sd_setImageWithURL:imageUrl placeholderImage:[UIImageimageNamed:@"default_head_image@2x.png"]];

     

    return cell;

}


#pragma mark 处理点击事件

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath

{

    NSLog(@"我被点击了");

}


#pragma mark - UICollectionViewDelegateFlowLayout Method

#pragma mark 设置item的大小

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath

{

    return CGSizeMake(90120);

}


#pragma mark 设置footer和header

- (UICollectionReusableView *)collectionView:(UICollectionView*)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath

{

    if (kind == UICollectionElementKindSectionHeader) {

        // 去重用队列取可用的header

        MyHeader *reusableView = [collectionViewdequeueReusableSupplementaryViewOfKind:kindwithReuseIdentifier:@"headerView" forIndexPath:indexPath];

        // 使用

        reusableView.headerImage.image = [UIImage imageNamed:@"屏幕快照 2014-0 9.30.50 9-11 上午.png"];

        // 返回

        return reusableView;

    }else{

        // 去重用队列取可用的footer

        MyFooter *reusableView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footerView"forIndexPath:indexPath];

        // 使用

        reusableView.backgroundColor = [UIColor redColor];

        // 返回

        return reusableView;

        

    }

}


#pragma mark 设置header和footer高度

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section

{

    return CGSizeMake(self.view.bounds.size.width, 70);

}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section

{

    return CGSizeMake(self.view.bounds.size.width, 70);

}


- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}



- (void)dealloc

{

    [_allDataArray release];

    [super dealloc];

}


@end


总结:
集合视图UICollectionView和表示图UITableView很相似,可根据layout属性设置,显示单元格集合内容
UICollectionViewDataSource类作为集合视图的数据源,向集合视图提供数据。集合视图依赖于委托(Delegate)中定义的方法对用户进行响应

内容概要:本文是一篇关于使用RandLANet模型对SensatUrban数据集进行点云语义分割的实战教程,系统介绍了从环境搭建、数据准备、模型训练与测试到精度评估的完整流程。文章详细说明了在Ubuntu系统下配置TensorFlow 2.2、CUDA及cuDNN等深度学习环境的方法,并指导用户下载和预处理SensatUrban数据集。随后,逐步讲解RandLANet代码的获取与运行方式,包括训练、测试命令的执行与参数含义,以及如何监控训练过程中的关键指标。最后,教程涵盖测试结果分析、向官方平台提交结果、解读评估报告及可视化效果等内容,并针对常见问题提供解决方案。; 适合人群:具备一定深度学习基础,熟悉Python编程和深度学习框架,从事计算机视觉或三维点云相关研究的学生、研究人员及工程师;适合希望动手实践点云语义分割项目的初学者与进阶者。; 使用场景及目标:①掌握RandLANet网络结构及其在点云语义分割任务中的应用;②学会完整部署一个点云分割项目,包括数据处理、模型训练、测试与性能评估;③为参与相关竞赛或科研项目提供技术支撑。; 阅读建议:建议读者结合提供的代码链接和密码访问完整资料,在本地或云端环境中边操作边学习,重点关注数据格式要求与训练参数设置,遇到问题时参考“常见问题与解决技巧”部分及时排查。
内容概要:本文详细介绍了三相异步电机SVPWM-DTC(空间矢量脉宽调制-直接转矩控制)的Simulink仿真实现方法,结合DTC响应快与SVPWM谐波小的优点,构建高性能电机控制系统。文章系统阐述了控制原理,包括定子磁链观测、转矩与磁链误差滞环比较、扇区判断及电压矢量选择,并通过SVPWM技术生成固定频率PWM信号,提升系统稳态性能。同时提供了完整的Simulink建模流程,涵盖电机本体、磁链观测器、误差比较、矢量选择、SVPWM调制、逆变器驱动等模块的搭建与参数设置,给出了仿真调试要点与预期结果,如电流正弦性、转矩响应快、磁链轨迹趋圆等,并提出了模型优化与扩展方向,如改进观测器、自适应滞环、弱磁控制和转速闭环等。; 适合人群:电气工程、自动化及相关专业本科生、研究生,从事电机控制算法开发的工程师,具备一定MATLAB/Simulink和电机控制理论基础的技术人员。; 使用场景及目标:①掌握SVPWM-DTC控制策略的核心原理与实现方式;②在Simulink中独立完成三相异步电机高性能控制系统的建模与仿真;③通过仿真验证控制算法有效性,为实际工程应用提供设计依据。; 阅读建议:学习过程中应结合文中提供的电机参数和模块配置逐步搭建模型,重点关注磁链观测、矢量选择表和SVPWM调制的实现细节,仿真时注意滞环宽度与开关频率的调试,建议配合MATLAB官方工具箱文档进行参数校准与结果分析。
已经博主授权,源码转载自 https://pan.quark.cn/s/bf1e0d5b9490 本文重点阐述了Vue2.0多Tab切换组件的封装实践,详细说明了通过封装Tab切换组件达成多Tab切换功能,从而满足日常应用需求。 知识点1:Vue2.0多Tab切换组件的封装* 借助封装Tab切换组件,达成多Tab切换功能* 支持tab切换、tab定位、tab自动化仿React多Tab实现知识点2:TabItems组件的应用* 在index.vue文件中应用TabItems组件,借助name属性设定tab的标题* 通过:isContTab属性来设定tab的内容* 能够采用子组件作为tab的内容知识点3:TabItems组件的样式* 借助index.less文件来设定TabItems组件的样式* 设定tab的标题样式、背景色彩、边框样式等* 使用animation达成tab的切换动画知识点4:Vue2.0多Tab切换组件的构建* 借助运用Vue2.0框架,达成多Tab切换组件的封装* 使用Vue2.0的组件化理念,达成TabItems组件的封装* 通过运用Vue2.0的指令和绑定机制,达成tab的切换功能知识点5:Vue2.0多Tab切换组件的优势* 达成多Tab切换功能,满足日常应用需求* 支持tab切换、tab定位、tab自动化仿React多Tab实现* 能够满足多样的业务需求,具备良好的扩展性知识点6:Vue2.0多Tab切换组件的应用场景* 能够应用于多样的业务场景,例如:管理系统、电商平台、社交媒体等* 能够满足不同的业务需求,例如:多Tab切换、数据展示、交互式操作等* 能够与其它Vue2.0组件结合运用,达成复杂的业务逻辑Vue2.0多Tab切换组件的封装实例提供了...
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值