iOS自动进行View标记的方法详解

前端之家收集整理的这篇文章主要介绍了iOS自动进行View标记的方法详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

缘起

一切都源于我的上一篇博客,我写的是一篇 UITableViewCell使用自动布局的“最佳实践” ,我需要给我的图片里面的UIView元素添加上边距的标记,这让我感到很为难,我觉得我得发点时间写一个程序让这个步骤自动化,我只要一键就能让我的程序自动标记边距,这个比我要手动去标记来的酷很多不是吗!

结果

所以,我发了点时间实现了我的想法,下面是实现的结果截图:

以及代码开源托管地址:代码链接 (本地下载)

iOS自动进行View标记的方法详解

预览图

过去几小时内的想法

静下心来整理我的想法和寻找方案,大概的整理下了一个可行性的方案以及这个方案中需要使用到的步骤,其中一些细节没有在这个步骤中体现

  • 获取水平的间距:遍历父View的子View,获取某个子sourceView的右边到其他子targetView的左边的距离,把结果保存到子targetView的入度数组中
  • 获取垂直的间距:遍历父View的子View,获取某个子sourceView的下边到其他子targetView的上边的距离,把结果保存到子targetView的入度数组中
  • 筛选出targetView的入度数组中所以不符合的结果,删除这些结果
  • 最终获取到了一个需要进行展示的结果数组,数组保存的是一系列的间距线段对象
  • 创建一个显示标记的TagView层,把结果的线段绘制在TagView上面,然后把TabView添加到父View上

代码实现解析

注入测试边框View

我的方案中所有的间距都是基于子View考虑的,所以子View和父View的边距需要特殊的计算,可以使用在父View的旁边添加一个物理像素的子View,最终只要处理所有这些子View,子View和父View的边距就能得到体现了,不用再做多余的处理,这是一个讨巧的方案。

  1. + (void)registerBorderTestViewWithView:(UIView*)view {
  2. CGFloat minWH = 1.0/[UIScreen mainScreen].scale;
  3. MMBorderAttachView* leftBorderView = [[MMBorderAttachView alloc] initWithFrame:CGRectMake(0,minWH,view.bounds.size.height)];
  4. [view addSubview:leftBorderView];
  5. MMBorderAttachView* rightBorderView = [[MMBorderAttachView alloc] initWithFrame:CGRectMake(view.bounds.size.width-minWH,view.bounds.size.height)];
  6. [view addSubview:rightBorderView];
  7.  
  8. MMBorderAttachView* topBorderView = [[MMBorderAttachView alloc] initWithFrame:CGRectMake(0,view.bounds.size.width,minWH)];
  9. [view addSubview:topBorderView];
  10. MMBorderAttachView* bottomBorderView = [[MMBorderAttachView alloc] initWithFrame:CGRectMake(0,view.bounds.size.height - minWH,minWH)];
  11. [view addSubview:bottomBorderView];
  12. }

获取父View的所有子View,抽象为MMFrameObject对象

  1. NSMutableArray* viewFrameObjs = [NSMutableArray array];
  2. NSArray* subViews = view.subviews;
  3. for (UIView* subView in subViews) {
  4. // 过滤特殊的View,不属于注入的View
  5. if (![subView conformsToProtocol:@protocol(MMAbstractView)]) {
  6. if (subView.alpha<0.001f) {
  7. continue;
  8. }
  9.  
  10. if (subView.frame.size.height <= 2) {
  11. continue;
  12. }
  13. }
  14.  
  15. MMFrameObject* frameObj = [[MMFrameObject alloc] init];
  16. frameObj.frame = subView.frame;
  17. frameObj.attachedView = subView;
  18. [viewFrameObjs addObject:frameObj];
  19. }

获取View之间的间距

需要处理两种情况:1、寻找View的右边对应的其他View的左边;2、寻找View的下边对应的其他View的上边,特殊滴需要处理两者都是MMAbstractView的情况,这种不需要处理

  1. NSMutableArray<MMLine*>* lines = [NSMutableArray array];
  2. for (MMFrameObject* sourceFrameObj in viewFrameObjs) {
  3. for (MMFrameObject* targetFrameObj in viewFrameObjs) {
  4.  
  5. // 过滤特殊的View
  6. if ([sourceFrameObj.attachedView conformsToProtocol:@protocol(MMAbstractView)]
  7. && [targetFrameObj.attachedView conformsToProtocol:@protocol(MMAbstractView)]) {
  8. continue;
  9. }
  10.  
  11. // 寻找View的右边对应的其他View的左边
  12. MMLine* hLine = [self horizontalLineWithFrameObj1:sourceFrameObj frameObj2:targetFrameObj];
  13. if (hLine) {
  14. [lines addObject:hLine];
  15. [targetFrameObj.leftInjectedObjs addObject:hLine];
  16. }
  17.  
  18. // 寻找View的下边对应的其他View的上边
  19. MMLine* vLine = [self verticalLineWithFrameObj1:sourceFrameObj frameObj2:targetFrameObj];
  20. if (vLine) {
  21. [lines addObject:vLine];
  22. [targetFrameObj.topInjectedObjs addObject:vLine];
  23. }
  24. }
  25. }

获取间距线段的实现

获取水平的间距线段为例,这种情况,只需要处理一个子View在另一个子View的右边的情况,否则返回nil跳过。获取水平间距线段,明显的线段的X轴是确定的,要,只要处理好Y轴就行了,问题就抽象为了两个线段的问题,这部分是在approperiatePointWithInternal方法中处理的,主要步骤是一长的线段为标准,然后枚举短的线段和长的线段存在的5种情况,相应的计算合适的值,然后给Y轴使用。

iOS自动进行View标记的方法详解

两条线段的5种关系

  1. + (MMLine*)horizontalLineWithFrameObj1:(MMFrameObject*)frameObj1 frameObj2:(MMFrameObject*)frameObj2 {
  2. if (ABS(frameObj1.frame.origin.x - frameObj2.frame.origin.x) < 3) {
  3. return nil;
  4. }
  5.  
  6. // frameObj2整体在frameObj1右边
  7. if (frameObj1.frame.origin.x + frameObj1.frame.size.width >= frameObj2.frame.origin.x) {
  8. return nil;
  9. }
  10.  
  11. CGFloat obj1RightX = frameObj1.frame.origin.x + frameObj1.frame.size.width;
  12. CGFloat obj1Height = frameObj1.frame.size.height;
  13.  
  14. CGFloat obj2LeftX = frameObj2.frame.origin.x;
  15. CGFloat obj2Height = frameObj2.frame.size.height;
  16.  
  17. CGFloat handle = 0;
  18. CGFloat pointY = [self approperiatePointWithInternal:[[MMInterval alloc] initWithStart:frameObj1.frame.origin.y length:obj1Height] internal2:[[MMInterval alloc] initWithStart:frameObj2.frame.origin.y length:obj2Height] handle:&handle];
  19.  
  20. MMLine* line = [[MMLine alloc] initWithPoint1:[[MMShortPoint alloc] initWithX:obj1RightX y:pointY handle:handle] point2:[[MMShortPoint alloc] initWithX:obj2LeftX y:pointY handle:handle]];
  21.  
  22. return line;
  23. }
  24.  
  25. + (CGFloat)approperiatePointWithInternal:(MMInterval*)internal1 internal2:(MMInterval*)internal2 handle:(CGFloat*)handle {
  26. CGFloat MINHandleValue = 20;
  27. CGFloat pointValue = 0;
  28. CGFloat handleValue = 0;
  29. MMInterval* bigInternal;
  30. MMInterval* smallInternal;
  31. if (internal1.length > internal2.length) {
  32. bigInternal = internal1;
  33. smallInternal = internal2;
  34. } else {
  35. bigInternal = internal2;
  36. smallInternal = internal1;
  37. }
  38.  
  39. // 线段分割法
  40. if (smallInternal.start < bigInternal.start && smallInternal.start+smallInternal.length < bigInternal.start) {
  41. CGFloat tmpHandleValue = bigInternal.start - smallInternal.start+smallInternal.length;
  42. pointValue = bigInternal.start - tmpHandleValue/2;
  43. handleValue = MAX(tmpHandleValue,MINHandleValue);
  44. }
  45. if (smallInternal.start < bigInternal.start && smallInternal.start+smallInternal.length >= bigInternal.start) {
  46. CGFloat tmpHandleValue = smallInternal.start+smallInternal.length - bigInternal.start;
  47. pointValue = bigInternal.start + tmpHandleValue/2;
  48. handleValue = MAX(tmpHandleValue,MINHandleValue);
  49. }
  50. if (smallInternal.start >= bigInternal.start && smallInternal.start+smallInternal.length <= bigInternal.start+bigInternal.length) {
  51. CGFloat tmpHandleValue = smallInternal.length;
  52. pointValue = smallInternal.start + tmpHandleValue/2;
  53. handleValue = MAX(tmpHandleValue,MINHandleValue);
  54. }
  55. if (smallInternal.start >= bigInternal.start && smallInternal.start+smallInternal.length > bigInternal.start+bigInternal.length) {
  56. CGFloat tmpHandleValue = bigInternal.start+bigInternal.length - smallInternal.start;
  57. pointValue = bigInternal.start + tmpHandleValue/2;
  58. handleValue = MAX(tmpHandleValue,MINHandleValue);
  59. }
  60. if (smallInternal.start >= bigInternal.start+bigInternal.length && smallInternal.start+smallInternal.length > bigInternal.start+bigInternal.length) {
  61. CGFloat tmpHandleValue = smallInternal.start - (bigInternal.start+bigInternal.length);
  62. pointValue = smallInternal.start - tmpHandleValue/2;
  63. handleValue = MAX(tmpHandleValue,MINHandleValue);
  64. }
  65.  
  66. if (handle) {
  67. *handle = handleValue;
  68. }
  69.  
  70. return pointValue;
  71. }

过滤线段

一个子View对象的入度可能有好几个,需要筛选进行删除,我使用的筛选策略是:以水平的间距线段为例,两条线段的Y差值小于某个阈值,选择线段长的那条删除,最终获取到了一个需要进行展示的结果数组,数组保存的是一系列的间距线段对象

  1. // 查找重复的射入line
  2. // hLine:Y的差值小于某个值,leftInjectedObjs->取最小一条
  3. // vLine:X的差值小于某个值,topInjectedObjs->取最小一条
  4. CGFloat minValue = 5;
  5. for (MMFrameObject* sourceFrameObj in viewFrameObjs) {
  6.  
  7. {
  8. // 排序:Y值:从大到小
  9. [sourceFrameObj.leftInjectedObjs sortUsingComparator:^NSComparisonResult(MMLine* _Nonnull obj1,MMLine* _Nonnull obj2) {
  10. return obj1.point1.point.y > obj2.point1.point.y;
  11. }];
  12. int i = 0;
  13. NSLog(@"\n\n");
  14. MMLine* baseLine,*compareLine;
  15. if (sourceFrameObj.leftInjectedObjs.count) {
  16. baseLine = sourceFrameObj.leftInjectedObjs[i];
  17. }
  18. while (i<sourceFrameObj.leftInjectedObjs.count) {
  19. NSLog(@"lineWidth = %.1f == ",baseLine.lineWidth);
  20. if (i + 1 < sourceFrameObj.leftInjectedObjs.count) {
  21. compareLine = sourceFrameObj.leftInjectedObjs[i + 1];
  22.  
  23. if (ABS(baseLine.point1.point.y - compareLine.point1.point.y) < minValue) {
  24. // 移除长的一条
  25. if (baseLine.lineWidth > compareLine.lineWidth) {
  26. [lines removeObject:baseLine];
  27. baseLine = compareLine;
  28. } else {
  29. [lines removeObject:compareLine];
  30. }
  31. } else {
  32. baseLine = compareLine;
  33. }
  34. }
  35. i++;
  36. }
  37. }
  38.  
  39. {
  40. // 排序:X值从大到小
  41. [sourceFrameObj.topInjectedObjs sortUsingComparator:^NSComparisonResult(MMLine* _Nonnull obj1,MMLine* _Nonnull obj2) {
  42. return obj1.point1.point.x >
  43. obj2.point1.point.x;
  44. }];
  45. int j = 0;
  46. MMLine* baseLine,*compareLine;
  47. if (sourceFrameObj.topInjectedObjs.count) {
  48. baseLine = sourceFrameObj.topInjectedObjs[j];
  49. }
  50. while (j<sourceFrameObj.topInjectedObjs.count) {
  51. if (j + 1 < sourceFrameObj.topInjectedObjs.count) {
  52. compareLine = sourceFrameObj.topInjectedObjs[j + 1];
  53.  
  54. if (ABS(baseLine.point1.point.x - compareLine.point1.point.x) < minValue) {
  55. // 移除长的一条
  56. // 移除长的一条
  57. if (baseLine.lineWidth > compareLine.lineWidth) {
  58. [lines removeObject:baseLine];
  59. baseLine = compareLine;
  60. } else {
  61. [lines removeObject:compareLine];
  62. }
  63. } else {
  64. baseLine = compareLine;
  65. }
  66. }
  67. j++;
  68. }
  69. }
  70. }

TagView 的绘制

  1. // 绘制View
  2. TaggingView* taggingView = [[TaggingView alloc] initWithFrame:view.bounds lines:lines];
  3. [view addSubview:taggingView];

TaggingView 在drawRect绘制线段以及线段长度的文字

  1. //
  2. // TaggingView.m
  3. // AutolayoutCell
  4. //
  5. // Created by aron on 2017/5/27.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8.  
  9. #import "TaggingView.h"
  10. #import "MMTagModel.h"
  11.  
  12. @interface TaggingView ()
  13. @property (nonatomic,strong) NSArray<MMLine*>* lines;;
  14. @end
  15.  
  16. @implementation TaggingView
  17.  
  18. - (instancetype)initWithFrame:(CGRect)frame lines:(NSArray<MMLine*>*)lines {
  19. self = [super initWithFrame:frame];
  20. if (self) {
  21. self.backgroundColor = [UIColor colorWithRed:255 green:255 blue:255 alpha:0.05];
  22. _lines = lines;
  23. }
  24. return self;
  25. }
  26.  
  27. - (void)drawRect:(CGRect)rect {
  28. [super drawRect:rect];
  29. //1.获取上下文
  30. CGContextRef context = UIGraphicsGetCurrentContext();
  31.  
  32. for (MMLine* line in _lines) {
  33. // 绘制线段
  34. CGContextSetLineWidth(context,2.0f/[UIScreen mainScreen].scale); //线宽
  35. CGContextSetAllowsAntialiasing(context,true);
  36. CGContextSetRGBStrokeColor(context,255.0 / 255.0,0.0 / 255.0,70.0 / 255.0,1.0); //线的颜色
  37. CGContextBeginPath(context);
  38. //设置起始点
  39. CGContextMoveToPoint(context,line.point1.point.x,line.point1.point.y);
  40. //增加
  41. CGContextAddLineToPoint(context,line.point2.point.x,line.point2.point.y);
  42. CGContextStrokePath(context);
  43.  
  44. // 绘制文字
  45. NSString *string = [NSString stringWithFormat:@"%.0f px",line.lineWidth];
  46. UIFont *fount = [UIFont systemFontOfSize:7];
  47. CGPoint centerPoint = line.centerPoint;
  48. NSDictionary* attrDict = @{NSFontAttributeName : fount,NSForegroundColorAttributeName: [UIColor redColor],NSBackgroundColorAttributeName: [UIColor colorWithRed:1 green:1 blue:0 alpha:0.5f]};
  49. [string drawInRect:CGRectMake(centerPoint.x - 15,centerPoint.y - 6,30,16) withAttributes:attrDict];
  50. }
  51. }
  52.  
  53. @end

以上就是我的的思路以及实现,有什么好的建议希望可以收到issue一起交流和谈论。

代码托管位置

代码传送门(本地下载)

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持

猜你在找的iOS相关文章