- (void)viewDidLoad { [super viewDidLoad]; UIImageView *imageView = [[[UIImageView alloc] initWithFrame:CGRectMake(50, 50, 275, 500)] autorelease]; im
分类:
其他好文 时间:
2016-02-21 09:04:55
阅读次数:
127
UIImage的两种创建方式: ?方式一:有缓存(图片所占用的内存会一直停留在程序中) + (UIImage *)imageNamed:(NSString *)name; name是图片的文件名 ?方式二:无缓存(图片所占用的内存会在一些特定操作后被清除) + (UIImage *)imageWit
分类:
其他好文 时间:
2016-02-20 21:30:01
阅读次数:
240
创建一个UITableView 和一个UIImageView @property (nonatomic, strong) UITableView *tableView; @property (nonatomic, strong) UIImageView *headerImgaeView; 初始化 1
分类:
其他好文 时间:
2016-02-19 12:24:38
阅读次数:
174
iOS开发之保存照片到系统相册(Photo Album) 保存照片到系统相册这个功能很多社交类的APP都有的,今天我们简单讲解一下,如何将图片保存到系统相册(Photo Album)。 创建UIImageView 创建UIImageView是为了将照片展示出来,我们是要把UIImage保存到系统相册
分类:
移动开发 时间:
2016-02-18 00:00:17
阅读次数:
362
UIImageView相当于?个相框,?来显?图?,?边可以是?张图?,也可以是?组图? //// ViewController.m// UIImageView 02//// Created by cqy on 16/2/15.// Copyright © 2016年 程清杨. All rights
分类:
其他好文 时间:
2016-02-16 18:46:12
阅读次数:
120
UILabel,UITextField,UIButton,UIImageView,UISlider
分类:
其他好文 时间:
2016-02-16 14:50:18
阅读次数:
159
##DAY13——可视化编程之XIB #import "Student.h" @interface StudentTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *headerIma
分类:
其他好文 时间:
2016-02-16 14:46:08
阅读次数:
99
关于手操作需要强调几点: UIImageView默认是不支持交互的,也就是userInteractionEnabled=NO ,因此要接收触摸事件(手势识别),必须设置userInteractionEnabled=YES(在iOS中UILabel、UIImageView的userInteractio
分类:
移动开发 时间:
2016-02-03 16:38:04
阅读次数:
668
提示:UIImageView的userInteractionEnabled 默认就是NO,因此UIImageView以及它的子控件默认是不能接触事件的 Main.storyboard ViewController.m // // ViewController.m // 7A02.触摸事件的传递 //
分类:
其他好文 时间:
2016-02-03 13:37:20
阅读次数:
182
SDWebImage托管在github上。https://github.com/rs/SDWebImage 这个类库提供一个UIImageView类别以支持加载来自网络的远程图片。具有缓存管理、异步下载、同一个URL下载次数控制和优化等特征。使用示范的代码: UITableView使用UIImage
分类:
Web程序 时间:
2016-02-01 17:38:45
阅读次数:
188