@implementation WDEnterLineViewController{ float xx; float yy; UIImageView *bgImgView; } - (void)viewDidLoad { [super viewDidLoad]; // Do any addition... ...
分类:
其他好文 时间:
2017-08-10 13:38:56
阅读次数:
163
[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
使用原生态的api上传文件的实现: #import "MainViewController.h" @interface MainViewController () @property (weak, nonatomic) UIImageView *imageView; @end @implementa ...
分类:
移动开发 时间:
2017-07-29 22:22:10
阅读次数:
264
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
二维码扫描 01-导入系统库 02 新建继承自UIView的 LHQPreView 2.1导入系统库头文件 #import <AVFoundation/AVFoundation.h> 2.2声明所需要的属性 @property(nonatomic,strong)UIImageView *imageV ...
分类:
移动开发 时间:
2017-07-05 11:45:51
阅读次数:
230
XWScanImage 是一个自定义的类, 评论留Q 发 ImageView = [[UIImageView alloc]init]; ImageView.backgroundColor = SetColor(160, 160, 160); //为UIImageView1添加点击事件 UITapGe ...
分类:
移动开发 时间:
2017-07-03 16:20:23
阅读次数:
244
文章只要你有一点点基础应该就可以看的懂,文章只为学习交流 #import "ViewController.h" @interface ViewController () @property (nonatomic,retain)UIImageView *imageView; @property (no ...
分类:
移动开发 时间:
2017-06-29 11:21:04
阅读次数:
244
最原始的载入网络下载的图片方式: //最原始载入网络图片方法,相当堵塞主线程,界面卡顿 -(void)setImageWithURL:(NSString *)imageDownloadUrl{ UIImageView *imageView = [[UIImageView alloc] initWit ...
分类:
移动开发 时间:
2017-06-27 12:21:51
阅读次数:
194