1,将下载好的第3方框架SDWebImage源码包加入到工程
2,进入工程的Build Phases,将源码包里面的所有.m文件全部添加到工程
3,导入框架依赖的两个系统自带的框架:MapKit.framework、ImageIO.framework
4,添加框架的主头文件"UIImageView+WebCache.h"
代码使用片段:
- (UITableViewCel...
分类:
移动开发 时间:
2014-08-06 19:04:02
阅读次数:
263
http://stackoverflow.com/questions/2658738/the-simplest-way-to-resize-an-uiimagehttp://stackoverflow.com/questions/185652/how-to-scale-a-uiimageview-p...
分类:
移动开发 时间:
2014-07-31 20:01:37
阅读次数:
280
今天上班遇到一种情况,需要局部响应点击事件,比如在一个UIImageView中设置一个小圆圈图片,要求点击圆圈里面不响应点击,点击小圆圈外面的部分响应点击。可以通过重写hitTest:withEvent: 和 pointInside: withEvent:方法来做到。看一下hitTest:withE...
分类:
其他好文 时间:
2014-07-27 10:26:22
阅读次数:
173
我们常常需要用到按钮需要文字和图片同时显示,例如:
我们需要定义一个UIButton的子类
实现文件
- (id)initWithFrame:(CGRect)frame
{
self = [super
initWithFrame:frame];
if (self) {
//可根据自己的需要随意调整
...
分类:
移动开发 时间:
2014-07-26 02:57:06
阅读次数:
265
- (void)viewDidLoad
{
[super viewDidLoad];
UIImageView * animatedImageView = [[UIImageView alloc]initWithFrame:CGRectMake(60, 80, 200, 300)];
animatedImageView.backgrou...
分类:
其他好文 时间:
2014-07-24 23:24:34
阅读次数:
356
模仿SDWebImage实现异步加载图片SDWebImage想必大家都不陌生吧,要实现它的图片异步加载功能这个还是很简单的.注意:此处我只实现了异步加载图片,并没有将文件缓存到本地的打算哦:)源码:UIImageView+YXImageView.h//// UIImageView+YXImageV....
分类:
Web程序 时间:
2014-07-23 12:27:16
阅读次数:
442
SDWebImage的使用1.依赖的框架* ImageIO.framework* MapKit.framework2.UIImageView下载图片需要的头文件:UIImageView+WebCache.h3.调用方法下载图片// url是图片路径// placeholder是占位图片(正在下载图片...
分类:
Web程序 时间:
2014-07-22 22:43:13
阅读次数:
294
http://iphonedevsdk.com/forum/iphone-sdk-development/101180-how-to-enlarge-picture-in-uiimageview.htmlhttp://stackoverflow.com/questions/11393696/show...
分类:
移动开发 时间:
2014-07-22 22:35:35
阅读次数:
258
继承与UIView,直接调用start和stop事件;@interface ActivityIndicatorView (){ UIImageView *_imageView; UILabel *_label;}@end@implementation ActivityIndicatorView-.....
分类:
移动开发 时间:
2014-07-22 00:06:37
阅读次数:
297
CGAffineTransform moveRight = CGAffineTransformTranslate(CGAffineTransformIdentity, 20, 0); CGAffineTransform moveLeft = CGAffineTransformTranslate(C....
分类:
其他好文 时间:
2014-07-21 08:37:09
阅读次数:
234