#pragma mark - 屏幕快照 - (UIImage *)convertViewToImage:(UIView *)view { //https://github.com/alskipp/ASScreenRecorder 录屏代码 // 第二个参数表示是否非透明。如果需要显示半透明效果,需传... ...
分类:
移动开发 时间:
2017-01-21 23:46:44
阅读次数:
754
第一步,下载SDWebImage,导入工程 第二步,在需要的地方导入头文件:#import "UIImageView+WebCache.h" 第三步,调用sd_setImageWithURL:方法,设置并缓存图片 1. sd_setImageWithURL: [self.image1 sd_setI ...
分类:
Web程序 时间:
2017-01-20 14:44:50
阅读次数:
166
1 // 取消导航栏下面的分隔线 2 navigationBar.setBackgroundImage(UIImage(), for: .default) 3 navigationBar.shadowImage = UIImage() 4 5 // 注意:如果设置了空的背景和阴影图片,要设置此属性为... ...
分类:
其他好文 时间:
2017-01-19 12:08:30
阅读次数:
213
知识点: 1.UIButton使用和事件机制 2.UIImage 3.自定义UIButton UIButton 1.创建方式 按钮类型 UIButtonTypeCustom 用户自定义按钮 UIButtonTypeRoundedRect 系统按钮 UIButtonTypeDetailDisclosu ...
分类:
移动开发 时间:
2017-01-17 00:17:20
阅读次数:
212
方法1:在UI线程中同步加载网络图片 UIImageView *headview = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 40, 40)]; NSURL *photourl = [NSURL URLWithString:@"http ...
分类:
移动开发 时间:
2017-01-14 17:28:59
阅读次数:
212
UIImageView视图可以显示图片 实例化UIImageView有两种方法 第一种方法: UIImageView *myImageView = [[ UIImageView alloc] initWithImage: [UIImage imageNamed: @”demo”]]; 用该方法可以显 ...
分类:
移动开发 时间:
2017-01-14 17:08:41
阅读次数:
191
有时候在设置UIImageView的大小时候需要根据UIimage的长宽比来自动设置,不让图片原比例失真。 如果是从本地获取到的图片,[UIImage imageNamed:@""]; 这样就可以拿到image了,从而获取到image的size。但大多数时候我们都是网络请求拿到的图片, 我们需要 N ...
分类:
移动开发 时间:
2017-01-14 12:16:49
阅读次数:
219
原文链接在很多编程语言中都有resizable image这样的概念,比如android中的NinePatch graphic ,css3中的border image,微软的Nine-Grid Rendering,还有就是iOS中UIImage的resizable image。123456789可以... ...
分类:
其他好文 时间:
2017-01-14 08:40:38
阅读次数:
163
// // 图像压缩 // - (UIImage *)scaleFromImage:(UIImage *)image { if (!image) { return nil; } NSData *data = UIImagePNGRepresentation(image); CGFloat dataS ...
分类:
其他好文 时间:
2017-01-12 09:50:18
阅读次数:
153
该文章引用自:http://www.jianshu.com/p/3d5ccbde0de1 IOS 微信聊天发送小视频的秘密(AVAssetReader+AVAssetReaderTrackOutput播放视频) 对于播放视频,大家应该一开始就想到比较方便快捷使用简单的MPMoviePlayerCon ...
分类:
其他好文 时间:
2017-01-07 16:35:04
阅读次数:
410