- 浏览: 904376 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (466)
- iPhone, iOS , Objective-c (155)
- 数据库 (20)
- 设计模式 (5)
- 第三方包管理,cocoapod (2)
- 版本管理, SVN, Subversion, Git (1)
- Google, Android, Java (14)
- Wordpress (1)
- 职业素养 (3)
- 版本管理,git (3)
- 前端小技巧 (2)
- flash (1)
- javascript (5)
- Ruby (0)
- 编程语言 (1)
- 网络常识 (1)
- 找到生活好感觉 (5)
- 产品经理 (1)
- markdown (1)
- 云服务器 (1)
- iPhone (116)
- iOS (116)
- Objective-c (116)
- 学习技巧 (2)
- Google (5)
- Android (6)
- Java (21)
- python (1)
- sqlite (3)
- node.js (2)
- mongodb (2)
- 学习技巧,阅读 (2)
- 软件测试 (3)
- 架构设计 (2)
- 设计 (1)
- Spring framework (3)
- junit (1)
- Linux (2)
- 软件 (1)
- Struts2 (1)
- 版本管理 (3)
- SVN (3)
- Subversion (3)
- Git (3)
- mysql (5)
- quartz (1)
- 无关技术 (1)
- 前端 (1)
- Redis (1)
- 产品管理 (0)
- 计算机常识 (1)
- 计算机科学 (0)
- swift (1)
- 服务器 (2)
- 搜索 (1)
- Scala (1)
- J2EE (1)
- maven (1)
- 前端css (1)
- 英语 (1)
- 消息队列 (1)
- kafka (0)
- apache kafka (4)
- netbeans (1)
- IDE (2)
- 歌词 (1)
- 过滤器实现 (1)
- linux vim vi (1)
- jmeter (1)
- springcloud (1)
最新评论
-
hujingnemo:
不知道为什么打不开
CHM如何改编字体大小 -
weiboyuan:
求答案 weiboyuanios@163.com
iOS软件工程师面试题(高级) -
xueji5368:
这个现在已经广泛使用了嘛!
RoboGuice入门 -
Yao__Shun__Yu:
...
CHM如何改编字体大小 -
353144886:
非常之详细 美女求认识
sqlite数据类型 datetime处理
//
// UIImageAdditions.m
// Newspress
//
// Created by Kyle Van Essen on 10-04-10.
// Copyright 2010 Vibealicious. All rights reserved.
//
#import "UIImageAdditions.h"
@implementation UIImage (Additions)
+(void)drawNinePartImage:(NSArray *)images inRect:(CGRect)rect
{
CGPoint origin = rect.origin;
CGSize size = rect.size;
NSInteger partCount = 9;
if ([images count] < partCount)
return;
CGRect rects[partCount];
UIImage *image;
// Top Row
image = [images objectAtIndex:0];
rects[0] = CGRectMake(origin.x, origin.y, image.size.width, image.size.height);
image = [images objectAtIndex:2];
rects[2] = CGRectMake(origin.x + size.width - image.size.width, origin.y, image.size.width, image.size.height);
image = [images objectAtIndex:1];
rects[1] = CGRectMake(rects[0].size.width + rects[0].origin.x, origin.y, size.width - rects[0].size.width - rects[2].size.width, image.size.height);
// Bottom Row
image = [images objectAtIndex:6];
rects[6] = CGRectMake(origin.x, origin.y + size.height - image.size.height, image.size.width, image.size.height);
image = [images objectAtIndex:8];
rects[8] = CGRectMake(origin.x + size.width - image.size.width, origin.y + size.height - image.size.height, image.size.width, image.size.height);
image = [images objectAtIndex:7];
rects[7] = CGRectMake(rects[6].size.width + rects[6].origin.x, origin.y + size.height - image.size.height, size.width - rects[6].size.width - rects[8].size.width, image.size.height);
// Middle Row
image = [images objectAtIndex:3];
rects[3] = CGRectMake(origin.x, origin.y + rects[0].size.height, image.size.width, size.height - rects[0].size.height - rects[6].size.height);
image = [images objectAtIndex:5];
rects[5] = CGRectMake(origin.x + size.width - image.size.width, origin.y + rects[0].size.height, image.size.width, size.height - rects[2].size.height - rects[8].size.height);
image = [images objectAtIndex:4];
rects[4] = CGRectMake(rects[3].size.width + rects[3].origin.x, origin.y + rects[0].size.height, size.width - rects[0].size.width - rects[2].size.width, size.height - rects[1].size.height - rects[7].size.height);
for (NSInteger index = 0; index < partCount; index++)
{
UIColor *pattern = [[UIColor alloc] initWithPatternImage:[images objectAtIndex:index]];
//NSLog(@"Frame: %f, %f, %f, %f", rects[index].origin.x, rects[index].origin.y, rects[index].size.width, rects[index].size.height);
[pattern set];
CGContextSetPatternPhase(UIGraphicsGetCurrentContext(), CGSizeMake(rects[index].origin.x, rects[index].origin.y));
UIRectFill(rects[index]);
[pattern release];
}
[[UIColor clearColor] set];
}
@end
// UIImageAdditions.m
// Newspress
//
// Created by Kyle Van Essen on 10-04-10.
// Copyright 2010 Vibealicious. All rights reserved.
//
#import "UIImageAdditions.h"
@implementation UIImage (Additions)
+(void)drawNinePartImage:(NSArray *)images inRect:(CGRect)rect
{
CGPoint origin = rect.origin;
CGSize size = rect.size;
NSInteger partCount = 9;
if ([images count] < partCount)
return;
CGRect rects[partCount];
UIImage *image;
// Top Row
image = [images objectAtIndex:0];
rects[0] = CGRectMake(origin.x, origin.y, image.size.width, image.size.height);
image = [images objectAtIndex:2];
rects[2] = CGRectMake(origin.x + size.width - image.size.width, origin.y, image.size.width, image.size.height);
image = [images objectAtIndex:1];
rects[1] = CGRectMake(rects[0].size.width + rects[0].origin.x, origin.y, size.width - rects[0].size.width - rects[2].size.width, image.size.height);
// Bottom Row
image = [images objectAtIndex:6];
rects[6] = CGRectMake(origin.x, origin.y + size.height - image.size.height, image.size.width, image.size.height);
image = [images objectAtIndex:8];
rects[8] = CGRectMake(origin.x + size.width - image.size.width, origin.y + size.height - image.size.height, image.size.width, image.size.height);
image = [images objectAtIndex:7];
rects[7] = CGRectMake(rects[6].size.width + rects[6].origin.x, origin.y + size.height - image.size.height, size.width - rects[6].size.width - rects[8].size.width, image.size.height);
// Middle Row
image = [images objectAtIndex:3];
rects[3] = CGRectMake(origin.x, origin.y + rects[0].size.height, image.size.width, size.height - rects[0].size.height - rects[6].size.height);
image = [images objectAtIndex:5];
rects[5] = CGRectMake(origin.x + size.width - image.size.width, origin.y + rects[0].size.height, image.size.width, size.height - rects[2].size.height - rects[8].size.height);
image = [images objectAtIndex:4];
rects[4] = CGRectMake(rects[3].size.width + rects[3].origin.x, origin.y + rects[0].size.height, size.width - rects[0].size.width - rects[2].size.width, size.height - rects[1].size.height - rects[7].size.height);
for (NSInteger index = 0; index < partCount; index++)
{
UIColor *pattern = [[UIColor alloc] initWithPatternImage:[images objectAtIndex:index]];
//NSLog(@"Frame: %f, %f, %f, %f", rects[index].origin.x, rects[index].origin.y, rects[index].size.width, rects[index].size.height);
[pattern set];
CGContextSetPatternPhase(UIGraphicsGetCurrentContext(), CGSizeMake(rects[index].origin.x, rects[index].origin.y));
UIRectFill(rects[index]);
[pattern release];
}
[[UIColor clearColor] set];
}
@end
发表评论
-
oc为啥不用try catch
2016-03-23 11:56 1404简单的来说,Apple虽然同时提供了错误处理(NSError) ... -
ReactiveCocoa笔记
2016-03-14 12:31 0为什么使用MVVM?为什么使用ReactiveCocoa? 概 ... -
PINCache
2016-01-19 15:11 948PINCache是线程安全的键值缓存框架,用来储存难以获取或重 ... -
Swift设计模式
2015-12-29 12:04 0Swift设计模式 -
Understanding Swift access control
2015-12-29 12:03 0Swift takes an unusual approuac ... -
cocoapods因GEM_HOME升级遇到问题解决办法
2015-12-17 14:40 926Installing CocoaPods on OS X 10 ... -
swift 闭包的比较写法
2015-12-16 11:10 755let names = ["Chris", ... -
iOS 生成二维码,生成条形码图片
2015-12-03 15:44 1472#pragma mark - 生成条形码以及二维码 // ... -
解决cocoapods 更新慢的问题
2015-11-23 17:01 756最近使用CocoaPods来添加第三方类库,无论是执行pod ... -
iOS中级面试题
2015-11-20 15:12 1182OneV‘s Den在博客里出了10道iOS面试题,用他的话是 ... -
cocoapods出错解决方法
2015-11-09 13:09 746自定义GEM_HOME $ mkdir -p $HOME/So ... -
oc时间从美国时间改到中国时间
2015-10-19 14:12 979_formatter = [[NSDateFormatt ... -
27个iOS开发库
2015-07-24 16:10 769超长慎入列表: DZNEmptyDataSet(UI,空表格 ... -
Values of type 'NSInteger' should not be used as format arguments; add an explic
2015-07-24 10:10 844Values of type 'NSInteger' shou ... -
iOS架构心得体会
2015-05-18 18:35 815好的架构不是设计出来的,而是进行出来的。 我的iOS工程架构 ... -
UICollectionView NSInternalInconsistencyException出现的原因
2015-05-11 11:32 3414'NSInternalInconsistencyExcepti ... -
XLForm-iOS表单库
2015-05-08 14:44 909XLForm是最灵活和强大的iOS类库,用于创建动态table ... -
Info.plist Utility Error: “Info.plist couldn't be opened because there is no suc
2015-05-06 16:13 689http://stackoverflow.com/questi ... -
iOS中Autolayout中各种情况的使用的width,height策略
2015-04-30 15:33 685可以总结为: 如果项目不支持横屏显示,使用w:Compac ... -
一句话加上下拉刷新
2015-04-29 18:22 770怎么一句话添加上拉刷新? https://github.co ...
相关推荐
【前端开源库-css-slice-imgs】是一个专为前端开发者设计的开源库,其核心功能是帮助优化CSS中的背景图像处理。在Web开发中,为了提高页面加载速度和减少HTTP请求,开发者常会将一张大的图片切割成多个小图,然后...
本文将围绕“h264-sps-slice-nalunit”这一主题,深入探讨H264编码中的关键组件——Sequence Parameter Set (SPS)、Picture Parameter Set (PPS)、Slice以及Network Access Layer Unit (NAL Unit),并结合Visual ...
在给定的压缩包文件“TIA博途-截取有效字符串FB全局库文件-V17版本-GF-String-Slice.zip”中,我们主要关注的是如何在TIA博途V17中实现字符串处理,特别是截取有效字符串的功能。 FB(Function Block)是PLC编程中...
current->time_slice--; return current; } else { // 时间片耗尽,将进程放回队尾 rear--; // 因为队列是循环的,所以这里可以不用考虑溢出 current->time_slice = initial_time_slice; // 重置时间片 return...
Slice iOS SDK 通过开发人员可以访问用户的在线购买历史记录。 它通过处理电子邮件回执来工作,并且涉及商户和产品类别。 可用的资源包括订单,物料,装运等。 SliceSDK是在iOS上使用Slice API的便捷框架。 注意...
用于切片git存储库 警告! 这将对您的git存储库执行永久修改! 小心。 安装 raco pkg install git-slice 样品使用: $ cd my-repo ...git-slice/filter和git-slice/chop步骤可能需要很长时间。
要实现相册框效果,通常会用到一张包含边框和内阴影的图像,然后通过调整 `border-image-slice` 和 `border-image-repeat` 属性来创建所需的外观。例如,我们可以设置 `border-image-slice` 为图像宽度和高度的一半...
在iOS设备上,有时开发者会遇到`border-image`样式不生效的问题,这通常是由于浏览器的兼容性或特定的渲染机制导致的。`border-image`是一个非常有用CSS3属性,允许我们使用图像来创建复杂的边框效果,而不仅仅是...
我们可以使用`border-image-slice`属性来指定图像的切割位置,例如: ```css QPushButton { border-image: url(:/testImage) 10 10 10 10 fill stretch; } ``` 这里的数字`10 10 10 10`分别代表图像的上、右、下...
总结一下,`border-image`是CSS3中的一个重要特性,它提供了丰富的边框设计选项,通过组合使用`border-image-source`、`border-image-slice`、`border-image-width`、`border-image-outset`和`border-image-repeat`...
使用pip安装BiG-SLiCE : 来自PyPI(稳定) user@local:~ $ pip install bigslice 从来源(出血边缘) user@local:~ $ git clone git@github.com:medema-group/bigslice.git user@local:~ $ pip install ./big...
"ByteArray-Scale-Bitmap.rar_ByteArray_slice" 提供了一种利用ByteArray来处理9-slice Bitmap缩放的技术,这对于优化GUI性能和适应不同屏幕尺寸至关重要。9-slice缩放是一种特殊的图像拉伸方法,它确保了图片在放大...
时间片轮转法:程序模拟进程的时间片轮转RR调度过程。Time slice Round-Robin: program to simulate the process time slice rotation RR scheduling process.
H.264中的slice分为三种类型:I-slice(Intra-slice,只包含I帧的宏块),P-slice(Predicted-slice,包含P帧的宏块)和B-slice(Bidirectional-slice,包含B帧的宏块)。I帧不依赖于其他帧,P帧依赖于前一帧,B帧...
本工具是用Qt开发的,用来对mp4进行转码,并切割为hls文件,可一键操作。
content : [ 3 , 1 , 4 , 1 , 5 , 9 ] , offset : 2 , limit : 3 } ) ; console . log ( sliced . toArray ( ) ) ; // [4, 1, 5]; 特性 content :Ember.Array(可选,默认= [] ) 内容数组。 必须是实现Ember....
turf.line-slice (Point, Point, Line) 在起点和终点处切片 LineString 参数 范围 类型 描述 Point 观点 开始切片 Point 观点 停止切片 Line 线串 切片 例子 var line = { "type" : "Feature" , "properties...
网格切片多边形用平面切片网格并返回生成的多边形安装npm install mesh-slice-polygon 用下面的代码是提取 var createSlicer = require ( './mesh-slice-polygon' ) ;var slicer = createSlicer ( ) ;var stl = ...
单片机程序编写的主体思想--多任务分层思,即参考时间片轮询法!内容包括思想介绍和一个简单的例程。