1、播放图片集 2.2 创建 Objective C @property (nonatomic, strong) UIImageView playImageView; // 创建播放视图 self.playImageView = [[UIImageView alloc] initWithFrame: ...
分类:
其他好文 时间:
2018-07-27 01:18:34
阅读次数:
193
1 UIImage 任意角度旋转 2 图片任意位置裁剪 3 图片圆角剪切 4 图片任意拉伸 5 屏幕截屏 6 图片添加文字及logo水印效果 ...
分类:
移动开发 时间:
2018-07-13 19:01:45
阅读次数:
218
#import "UINavigationBar+ChangeColor.h" @implementation UINavigationBar (ChangeColor) - (void)start{ UIImageView *shawImage = [self findNavLineImageOn ...
分类:
其他好文 时间:
2018-07-12 17:57:54
阅读次数:
142
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 /** 6 图片 7 */ 8 @property (weak, nonatomic) IBOutlet UIImageView *imageView; 9 10 @e... ...
分类:
编程语言 时间:
2018-07-04 13:49:23
阅读次数:
208
UIImageView高效加个圆角 一般通过clipsToBounds和layer.cornerRadius会强制Core Animation提前渲染屏幕的离屏绘制,影响性能。 通过贝塞尔曲线切割图片实现path.addclip(); drawRect在以下情况下会被调用: 1、如果在UIView初 ...
分类:
移动开发 时间:
2018-06-23 10:36:40
阅读次数:
208
Let's do it! 首先创建一个Model类 包括一个图片名称属性 还有文字内容属性 创建一个继承于UITableViewCell的MyTableViewCell,把模型作为属性,在MyTableViewCell的延展里写一个UIImageView和UILabel属性 ...
分类:
其他好文 时间:
2018-06-11 17:11:56
阅读次数:
194
https://www.jianshu.com/p/44bbff4274f3 由于这样处理的渲染机制是GPU在当前屏幕缓冲区外新开辟一个渲染缓冲区进行工作,也就是离屏渲染,这会给我们带来额外的性能损耗,如果这样的圆角操作达到一定数量,会触发缓冲区的频繁合并和上下文的的频繁切换,性能的代价会宏观地表现 ...
分类:
其他好文 时间:
2018-04-16 13:43:09
阅读次数:
172
1.通过分类的方式,对外暴露接口。 2.给分类添加属性,通过imageURLStorageKey值,将self 和 字典进行绑定。 通过sd_imageURLForState等方法进行取值。 3.调用UIView +WebCache 的sd_internalSetImageWithURL方法 ,设置 ...
分类:
Web程序 时间:
2018-03-30 21:58:05
阅读次数:
225
流程图: 1.UIimageView + WebCache 类 sd_setImageWithURL 方法,实现异步加载图片。 在分类中,实现 sd_imageURL属性,保存url . 将placeHolder 付给image 2. SDWebImageManager(单利),调用 downloa ...
分类:
Web程序 时间:
2018-03-30 21:52:40
阅读次数:
273