码迷,mamicode.com
首页 >  
搜索关键字:uiimage    ( 1221个结果
ios开发之自己定义默认生成的导航栏 标题 颜色 返回button
一 改动导航栏颜色 导航栏在哪个页面代码放在那里面 self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:(21.0/255.0) green:(153.0 / 255.0) blue:(224.0 / 2 ...
分类:移动开发   时间:2017-05-14 21:50:17    阅读次数:228
SDWebImage源码阅读(四)SDWebImageDecoder
一般我们都是使用: 和: 两种方式加载图片,它们两个的区别在SDWebImage源码阅读前的准备(三)UIImage.h 里面的 “(六):加载和创建UIImage 的类方法和实例方法:”部分有详细的介绍。 为什么要对图片进行解码?难道不能直接使用上面的两种加载方式直接进行加载显示吗,答案是可以,而 ...
分类:Web程序   时间:2017-05-13 16:08:18    阅读次数:470
iOS开发之视频根据url获取第一帧图片,获取任一帧图片
+ (UIImage*) thumbnailImageForVideo:(NSURL *)videoURL atTime:(NSTimeInterval)time { AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL optio ...
分类:移动开发   时间:2017-05-10 19:56:26    阅读次数:344
SDWebImage源码阅读(三)UIImage+GIF
UIImage+GIF 是UIImage 类的一个GIF 分类,在之前的版本里面这个分类是用了处理GIF 动态图片的但是会有内存暴增的bug。在当前 '4.0.0-beta2' 的版本里GIF 动态图片处理放在了UIImage+MultiFormat 这个分类里面,而当前这个GIF 的分类的功能只是 ...
分类:Web程序   时间:2017-05-06 15:57:33    阅读次数:350
iOS中UDP的使用
// // ViewController.m // UDPDemo // // Created by qianfeng01 on 15-8-13. // Copyright (c) 2015年 zg. All rights reserved. // #import "ViewController.h ...
分类:移动开发   时间:2017-05-06 11:50:20    阅读次数:254
Block系列2:Block内存管理
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #imp ...
分类:其他好文   时间:2017-05-01 14:20:01    阅读次数:148
CALayer 的 position和anchorPoint属性
在iOS中,UIButton、UIImage等UIView之所以能够显示在屏幕上,是因为其内部有一个图层(CALayer)。通过UIView的layer属性可以访问这个图层:@property(nonatomic,readonly,retain)CALayer*layer;当UIView需要显示到屏幕上时,会调用drawRect:方法进行绘图,并且会将所有内容绘..
分类:其他好文   时间:2017-04-30 23:04:32    阅读次数:216
CALayer 的 position和anchorPoint属性
在iOS 中,UIButton、UIImage等UIView 之所以能够显示在屏幕上,是因为其内部有一个图层(CALayer)。通过UIView的layer 属性可以访问这个图层: 当UIView需要显示到屏幕上时,会调用 drawRect: 方法进行绘图,并且会将所有内容绘制在自己的图层上,绘图完 ...
分类:其他好文   时间:2017-04-30 20:38:06    阅读次数:171
swift:使用协议protocol设置颜色,UIImage的切圆角ImageWithCornerRadius
//使用协议方便以后切换颜色配置文件、或者做主题配色之类乱七八糟产品经理最爱的功能protocolV2EXColorProtocol{varv2_backgroundColor:UIColor{get}varv2_navigationBarTintColor:UIColor{get}varv2_TopicListTitleColor:UIColor{get}varv2_TopicListUserNameColor:UIColor{g..
分类:编程语言   时间:2017-04-30 01:01:04    阅读次数:238
iOS Core Animation
Core Animation 基本3种动画:基本动画CABasicAnimation、 关键帧动画CAKeyframeAnimation、 转场动画CATransition 还有就是动画组:CAAnimationGroup 一、基本动画CABasicAnimation的使用: 二、关键帧动画CAKe ...
分类:移动开发   时间:2017-04-29 21:07:20    阅读次数:257
1221条   上一页 1 ... 11 12 13 14 15 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!