码迷,mamicode.com
首页 >  
搜索关键字:uiimageview    ( 965个结果
IOS 网络-深入浅出(一 )-> 三方SDWebImage
首要我们以最为常用的UIImageView为例介绍实现原理: 1)UIImageView+WebCache: setImageWithURL:placeholderImage:options: 先显示 placeholderImage ,同时由SDWebImageManager 根据 URL 来在本 ...
分类:移动开发   时间:2016-03-24 16:12:00    阅读次数:168
UIImageView添加圆角
最直接的方法就是使用如下属性设置: **这是离屏渲染(off-screen-rendering),消耗性能的** 给UIImage添加生成圆角图片的扩展API:这是on-screen-rendering ...
分类:其他好文   时间:2016-03-24 06:33:20    阅读次数:334
【转】iOS隐藏导航条1px的底部横线
默认情况下会有这条线 第一种方法: 运行后效果如下(此处原有的灰色背景色会被white.png代替):PS:这是唯一一个隐藏这条线的官方用法,但是有一个缺陷-删除了translucency(半透明) 第二种方法:1)声明UIImageView变量,存储底部横线 2)在viewDidLoad中加入:
分类:移动开发   时间:2016-03-17 19:16:18    阅读次数:194
SDWebImage原理(面试)
通过对UIImageView的类别扩展来实现异步加载替换图片的工作。 主要用到的对象:1、UIImageView (WebCache)类别,入口封装,实现读取图片完成后的回调2、SDWebImageManager,对图片进行管理的中转站,记录那些图片正在读取。向下层读取Cache(调用SDImage
分类:Web程序   时间:2016-03-17 19:14:24    阅读次数:177
UIImageview的简单运用
UIImageView,顾名思义,是用来放置图片的。使用Interface Builder设计界面时,当然可以直接将控件拖进去并设置相关属性,这就不说了,这里讲的是用代码。 1、创建一个UIImageView: 创建一个UIImageView对象有五种方法: UIImageView *imageVi
分类:其他好文   时间:2016-03-12 00:03:44    阅读次数:287
【代码笔记】给UIImageView加上圆角效果
一,效果图。 二,代码。 RootViewController.m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (id)initWi
分类:其他好文   时间:2016-03-11 10:04:58    阅读次数:150
iOS UISegmentedControl的例子
#import <UIKit/UIKit.h> @interface ViewController : UIViewController @property(strong,nonatomic) UIImageView *MyImage; @property(strong,nonatomic) UIT
分类:移动开发   时间:2016-03-09 23:54:01    阅读次数:265
UICollectionView
1 #import "ViewController.h" 2 #import "Model.h" 3 #import "MyCollectionViewCell.h" 4 #import "UIImageView+WebCache.h" 5 #import "CustomLayout.h" 6 @i
分类:其他好文   时间:2016-03-09 20:47:57    阅读次数:202
UIImageView
#import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc { self.window = nil; [super dealloc]; } - (BOOL)app
分类:其他好文   时间:2016-03-09 12:50:51    阅读次数:133
几行代码搞定图片模糊模式
- (void)viewDidLoad { [super viewDidLoad]; // 做图片 UIImageView *myImgView = [[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds]; myImgView.
分类:其他好文   时间:2016-03-09 12:40:50    阅读次数:154
965条   上一页 1 ... 23 24 25 26 27 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!