- 博客(12)
- 资源 (4)
- 收藏
- 关注
原创 ios播放gif动画
#import NSData *gifData = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@“xxx” ofType:@"gif"]]; NSMutableArray *frames = nil; CGImageSourceRef s
2015-09-25 16:40:21 345
原创 ios uitableviewcell 添加uibutton无法Highlighted问题
[tableView setDelaysContentTouches:NO]; for (UIView *currentView in tableView.subviews) { if ([currentView isKindOfClass:[UIScrollView class]]) { ((UIScrollView *)currentView
2015-09-23 16:01:04 504
原创 ios裁剪视频 加水印
AVAsset *avAsset = [AVAsset assetWithURL:[NSURL fileURLWithPath:v_strVideoPath]]; AVMutableComposition *avMutableComposition = [AVMutableComposition composition]; AVMutableCompositionTrack
2015-09-15 09:58:50 2081
原创 ios通过svg截取头像
UIImageView* testImg=[[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 50, 50)]; testImg.image=[UIImage imageNamed:@"登录背景"]; PocketSVG *myVectorDrawing = [[PocketSVG alloc] initFromSV
2015-08-21 17:21:47 817
转载 ios 获取视频制定帧图片
-(UIImage*) thumbnailImageForVideo:(NSURL *)videoURL atTime:(NSTimeInterval)time { AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil] ; NSParameterAssert(asset);
2015-08-17 16:40:20 746
原创 android viewdraghelper使用
viewdraghelper是v4包提供的一个为了简化手势操作的类,下面是一个slidermenu的例子来展示viewdraghelper的一些基本使用方法。package com.example.test;import android.annotation.SuppressLint;import android.content.Context;import android.s
2015-06-19 15:17:54 264
原创 TCP优化几点
1.把服务器内核升级到最新版本2.确保cwnd大小为103.禁用空闲后的慢启动4.确保启动窗口缩放5.减少冗余数据传输6.压缩传输数据7.减短用户与服务器距离8.尽可能重用tcp链接
2015-06-09 13:43:42 462
原创 ios UIImage修改大小后图片模糊解决办法
这个方法不100%保证能解决,但是大部分修改后依然很清晰- (UIImage *)scaleToSize:(UIImage *)img size:(CGSize)size{ UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].scale); [img drawInRect:CGRect
2015-06-03 15:19:45 4193
原创 Java动态代理
首先带着问题来看:1、Java动态代理是什么?2、动态代理是做什么的?3、动态代理的好处?Java动态代理,jdk 提供了一个proxy 类以及InvocationHandler接口。注意:java动态代理的类必须要有实现接口proxy是用来产生代理类的伪对象 主要方法public static Object newProxyInstance(ClassLoader l
2014-01-19 09:40:13 555
qbittorrent_4.2.5_setup.exe
2021-04-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人