经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 移动开发 » iOS » 查看文章
iOS实现九宫格自动生成视图
来源:jb51  时间:2019/3/25 8:56:26  对本文有异议

在移动开发里有相当多的时候需要使控件呈现九宫格格式的分布,最常见的如

图案解锁界面:

相册管理界面:

单独创建一个这样界面的步骤相当繁琐,要创建父视图用于控制每一个单独的控件,而控件添加的时候还要判断每一格的位置,而且代码复用性不高,因为每一种九宫格视图的控件边距,控件的宽高不同。

所以,是否可以写一个这样的模块,只需要提供一个子控件的frame就能够生成一个完整的九宫格视图呢?

以下是我的思路:

首先肯定是用一个类来管理整个模块的,所以创建一个UISodokuView类继承于UIScrollView:
——为什么是scollView?
——因为当需要添加的控件数量较大时,显然会超出手机屏幕范围,只有用scrollView才能完全显示,也就是说,只要用户提供了单个控件的frame、控件数量以及每一行控件的个数,就能够确定UIScrollView的contentSize大小,从而添加。

UISodokuView类

.h文件

  1. @interface UISodokuView : UIScrollView
  2. //基础控件的frame
  3. @property(nonatomic,assign)CGRect itemFrame;
  4. //要添加的控件数量
  5. @property(nonatomic,assign)NSInteger itemsNumber;
  6. //每一行控件数量
  7. @property(nonatomic,assign)NSInteger itemsNumberInOneLine;
  8. //存储控件的array
  9. @property(nonatomic,strong)NSMutableArray *itemsArray;
  10. //scrollView宽度
  11. @property(nonatomic,assign)NSInteger scrollViewWidth;
  12. //scrollView高度
  13. @property(nonatomic,assign)NSInteger scrollViewHeight;
  14.  
  15. //初始化,但并没有添加控件
  16. -(instancetype)initWithItemFrame:(CGRect)frame andItemsNumber:(NSInteger)itemsNumber andItemsNumberInOneLine:(NSInteger)itemsInOneLine;

这里我添加到scrollView上面每一个控件是一个默认背景为白色的UIView对象,并存储到itemsArray里面,用户想让每一个控件显示什么可以通过获取数组对象进行再添加。

.m文件

  1. @implementation UISodokuView
  2.  
  3. -(instancetype)initWithItemFrame:(CGRect)frame andItemsNumber:(NSInteger)itemsNumber andItemsNumberInOneLine:(NSInteger)itemsInOneLine{
  4. self = [super init];
  5. if (self) {
  6. //初始化
  7. _itemsArray = [NSMutableArray array];
  8. _itemFrame = frame;
  9. _itemsNumber = itemsNumber;
  10. _itemsNumberInOneLine = itemsInOneLine;
  11. self.frame = CGRectZero;
  12. }
  13. [self layoutModule];
  14. return self;
  15. }
  16.  
  17. -(void)layoutModule{
  18. //获取item宽高和横向纵向间距
  19. NSInteger itemWidthGap = _itemFrame.origin.x;
  20. NSInteger itemHeightGap = _itemFrame.origin.y;
  21. NSInteger width = _itemFrame.size.width;
  22. NSInteger height = _itemFrame.size.height;
  23. //容器宽度
  24. _scrollViewWidth = itemWidthGap * (_itemsNumberInOneLine + 1) + width * _itemsNumberInOneLine;
  25. //总行数
  26. NSInteger numberOfLines = 0;
  27. if (_itemsNumber%_itemsNumberInOneLine == 0) {
  28. numberOfLines = _itemsNumber/_itemsNumberInOneLine;
  29. }else{
  30. numberOfLines = _itemsNumber/_itemsNumberInOneLine + 1;
  31. }
  32. _scrollViewHeight = itemHeightGap*(numberOfLines + 1) + height*numberOfLines - 2;
  33. //确定scrollView的frame,默认y轴边距200
  34. self.frame = CGRectMake(0, 200, _scrollViewWidth,height + itemHeightGap*2);
  35. self.contentSize = CGSizeMake(_scrollViewWidth, _scrollViewHeight);
  36. self.scrollEnabled = YES;
  37. self.backgroundColor = [UIColor lightGrayColor];
  38. //创建并添加控件
  39. NSInteger line = 1;
  40. NSInteger row = 1;
  41. for (int i = 1;i <= _itemsNumber ; i++) {
  42. UIView *item = [[UIView alloc] initWithFrame:_itemFrame];
  43. item.backgroundColor = [UIColor whiteColor];
  44. [_itemsArray addObject:item];
  45. [self addSubview:item];
  46. //判断处于第几行
  47. line = i/_itemsNumberInOneLine + 1;
  48. //判断处于第几列
  49. row = i % _itemsNumberInOneLine;
  50. if (row == 0) {
  51. row = _itemsNumberInOneLine;
  52. line -= 1;
  53. }
  54. item.frame = CGRectMake(row*itemWidthGap + (row-1)*width, line*itemHeightGap + (line-1)*height, width, height);
  55. }
  56. }

这里有些数据是默认的:

——scrollView的可视范围:宽度由控件frame确定,高度默认显示一行控件,可滚动,
——scrollView位置默认左边距为0,上边距为200;

这些都可由用户根据自己情况作更改,所以相当方便。

一下是一个使用例子:

  1. UISodokuView * sv = [[UISodokuView alloc] initWithItemFrame:CGRectMake(10, 10, 100, 120) andItemsNumber:10 andItemsNumberInOneLine:3];
  2. [self.view addSubview:sv];

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持w3xue。

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号