码迷,mamicode.com
首页 >  
搜索关键字:uiimageview    ( 965个结果
手势拖动. 约束图片边缘 .限制拉动范围
@implementation WDEnterLineViewController{ float xx; float yy; UIImageView *bgImgView; } - (void)viewDidLoad { [super viewDidLoad]; // Do any addition... ...
分类:其他好文   时间:2017-08-10 13:38:56    阅读次数:163
使用手势对UIImageView进行缩放、旋转和移动
[cpp] view plain copy // 添加所有的手势 - (void) addGestureRecognizerToView:(UIView *)view { // 旋转手势 UIRotationGestureRecognizer *rotationGestureRecognizer = ...
分类:移动开发   时间:2017-08-10 13:36:38    阅读次数:331
制作毛玻璃效果
//加入一个图片 UIImageView *imageview = [[UIImageView alloc]init]; imageview.frame = CGRectMake(10, 100, 300, 300); imageview.contentMode = UIViewContentMod ...
分类:其他好文   时间:2017-08-05 17:54:52    阅读次数:116
ios网络学习------10 原生API文件上传
使用原生态的api上传文件的实现: #import "MainViewController.h" @interface MainViewController () @property (weak, nonatomic) UIImageView *imageView; @end @implementa ...
分类:移动开发   时间:2017-07-29 22:22:10    阅读次数:264
UIImageView的image的图片显示 imageView.contentMode
1.根据不同的需求,可以 ①:UIViewContentModeScaleAspectFill 图片按照原比例显示,可能会超出imageView的范围,imageView.layer.masksToBounds = YES;剪裁超出的部分; ②:在当前imageView的范围内,按比例完整显示,不能 ...
分类:其他好文   时间:2017-07-28 14:08:44    阅读次数:139
处理原形图片
做项目的时候经常遇到过自定义cell,就拿朋友圈来说,用户的头像也是要切圆形的,通常都是在cell里将imageView的layer做处理,像这样 UIImageView *imageView = [[UIImageView alloc] init]; imageView.layer.cornerR ...
分类:其他好文   时间:2017-07-09 11:00:59    阅读次数:213
iOS开发之二维码扫描
二维码扫描 01-导入系统库 02 新建继承自UIView的 LHQPreView 2.1导入系统库头文件 #import <AVFoundation/AVFoundation.h> 2.2声明所需要的属性 @property(nonatomic,strong)UIImageView *imageV ...
分类:移动开发   时间:2017-07-05 11:45:51    阅读次数:230
iOS 图片点击放大, 再次点击缩小
XWScanImage 是一个自定义的类, 评论留Q 发 ImageView = [[UIImageView alloc]init]; ImageView.backgroundColor = SetColor(160, 160, 160); //为UIImageView1添加点击事件 UITapGe ...
分类:移动开发   时间:2017-07-03 16:20:23    阅读次数:244
iOS学习必须了解的七大手势
文章只要你有一点点基础应该就可以看的懂,文章只为学习交流 #import "ViewController.h" @interface ViewController () @property (nonatomic,retain)UIImageView *imageView; @property (no ...
分类:移动开发   时间:2017-06-29 11:21:04    阅读次数:244
iOS-UIImageView载入网络下载的图片(异步+多线程)
最原始的载入网络下载的图片方式: //最原始载入网络图片方法,相当堵塞主线程,界面卡顿 -(void)setImageWithURL:(NSString *)imageDownloadUrl{ UIImageView *imageView = [[UIImageView alloc] initWit ...
分类:移动开发   时间:2017-06-27 12:21:51    阅读次数:194
965条   上一页 1 ... 4 5 6 7 8 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!