#import "ViewController.h"@interface ViewController ()@property (strong, nonatomic) IBOutlet UIImageView *imageViewFirst;@property (strong, nonatomic)...
分类:
其他好文 时间:
2015-03-31 12:08:47
阅读次数:
118
#import "ViewController.h"@interface ViewController ()@property(nonatomic,strong)CALayer *imageLayer;@end@implementation ViewController- (void)viewDid...
分类:
其他好文 时间:
2015-03-31 00:25:10
阅读次数:
166
框架名为:UIImage+WebCache.h 继承于UIimageView
框架里面加载网络图片的方法共4中:分别为1.普通加载 2.线程NSThread 3.
#import "ViewController.h"
#import "UIImage+WebCache.h"
@interface
ViewController ()
@en...
分类:
移动开发 时间:
2015-03-28 08:57:23
阅读次数:
160
__weak UIImageView *weekImage = imageView; imageView.transform = CGAffineTransformMakeScale(0.1, 0.1);//x y方向的初始缩放比例; [UIViewanimateWithDuration:.3...
分类:
Web程序 时间:
2015-03-22 00:10:37
阅读次数:
202
//最左侧加图片是以下代码 右侧类似
UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"comment_write"]];
_textField.leftView = imgView;
_textField.leftViewMode = UITextFieldViewModeAlways...
分类:
移动开发 时间:
2015-03-19 18:29:40
阅读次数:
247
原文地址:iphone开源框架和类作者:天风使用的开源框架和类:1:SDWebImage,UIImageView+WebCache加载一张图片。 2:UIViewExt用于定位坐标很有用,可以直接拿到bottom,top,left,right.3:CustomCatagory,是个类目,里面有nav...
分类:
其他好文 时间:
2015-03-19 18:04:31
阅读次数:
110
猫猫分享,必须精品先看效果主要实现类似看新闻的一个界面,不用拖拽,纯代码手工写。
首先分析app可以很容易知道他这里有两个UILabel一个UIImageView还有两个UIButton定义UIView中的东西@property (nonatomic, strong) UILabel *noLabel;//数字标签
@property (nonatomic, strong) UIImageView...
分类:
移动开发 时间:
2015-03-19 13:18:37
阅读次数:
288
UIImageView: 专门用来放置图片的视图。 UIImageView未继承UIControl,而直接继承UIView,所以它不能直接注册事件。需要通过添加手势来完成交互操作。 UIImageView里有几个支持动画效果的属性和方法。通过播放幻灯片的例子,认识它们: UIView的形变...
分类:
其他好文 时间:
2015-03-17 14:02:35
阅读次数:
160
UIImage*image = [UIImageimageNamed:@"RedButton"]; //通过一张原始图片生成一张可拉伸的图片 CGFloatimageW = image.size.width*0.5; CGFloatimageH = image.size.height*0.5; UI...
分类:
其他好文 时间:
2015-03-17 00:35:16
阅读次数:
255
关于使用UIImageView显示一串图片组成动画效果的总结:
1》创建装这一串图片的容器,使用NSArray
NSMutableArray *images = [NSMutableArray array];
2》使用NSBudle类加载进来图片,然后每次加载进来一个图片就赋给一个UIImage对象,(注意:使用这个类加载进来的图片可以清除缓存,但是其他方法加载比如
UIImag...
分类:
移动开发 时间:
2015-03-16 16:29:55
阅读次数:
149