# iOSDemos **Repository Path**: linux159/iosdemos ## Basic Information - **Project Name**: iOSDemos - **Description**: iOSDemos - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 10 - **Created**: 2020-11-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 项目介绍 ### AutolayoutCell 提供一个工具类,能够自动标记View和子View之间的边距 详细的介绍可以看这篇博客:[详细的介绍](https://my.oschina.net/u/1242477/blog/910398) 自动标记UIVie元素的结果截图: ![预览图](https://static.oschina.net/uploads/img/201705/27155416_3JPg.png "预览图") #### 使用方式: ##### 1.单个Cell中的所有内容进行标注 ```objc UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath]; [TagViewUtils showTaggingViewWithView:cell.contentView]; ``` ##### 2.对ViewController的View的所有内容进行标注 ```objc [TagViewUtils recursiveShowTagWithView:self.view]; ```