利用transform属性可以修改控件的位移(位置)、缩放、旋转创建一个transform属性CGAffineTransform CGAffineTransformMakeTranslation(CGFloat tx, CGFloat ty) ;CGAffineTransform CGAffineT...
分类:
其他好文 时间:
2015-09-14 00:29:12
阅读次数:
169
1.图片设置(平移,缩放,旋转)创建一个transform属性//按钮点击时,只能执行一次向上旋转 //派 M_PI_4 45度旋转 1. CGAffineTransform transforms= CGAffineTransformMakeRotation(M_PI_4); //按钮...
分类:
移动开发 时间:
2015-09-11 09:12:32
阅读次数:
160
1、UIView的常见的属性@property(nonatomic) CGRect frame;
@property(nonatomic) CGRect bounds;
@property(nonatomic) CGPoint center;
@property(nonatomic) CGAffineTransform transfor...
分类:
移动开发 时间:
2015-08-29 06:19:43
阅读次数:
210
CGAffineTransformMakeTranslation每次都是以最初位置的中心点为起始参照CGAffineTransformTranslate每次都是以传入的transform为起始参照,累加上一次形变效果CGAffineTransformIdentity为最初状态,即最初位置的中心点
分类:
Web程序 时间:
2015-08-19 19:52:17
阅读次数:
113
-(void)shakeView:(UIView*)viewToShake{ CGFloat t =2.0; CGAffineTransform translateRight =CGAffineTransformTranslate(CGAffineTransformIdentity, t,0.0.....
分类:
移动开发 时间:
2015-07-29 00:35:56
阅读次数:
245
仿射变换 iOS仿射变换是CGAffineTransform,仿射变换的特点是变换后的图形对边依然是平行的,它包括CGAffineTransformMakeRotation(CGFloat angle) /CGAffineTransformMakeScale(CGFloat sx, CGFlo...
分类:
移动开发 时间:
2015-07-13 22:15:48
阅读次数:
135
仿射变换本质是一种矩阵变换,可以用来做平移,缩放,旋转等操作
这些操作我们可以包装到动画中去
1.apple的官方文档定义:
CGAffineTransform CGAffineTransformMake ( CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty );
Parameters
a
T...
分类:
移动开发 时间:
2015-06-21 09:22:16
阅读次数:
230
IOS中CGAffineTransform的使用大概
CoreGraphics框架中的CGAffineTransform类可用于设定UIView的transform属性,控制视图的缩放、旋转和平移操作:
总得来说,这个类中包含3张不同类型,分别使用如下3个方法创建数值;
1.CGAffineTransformMakeTranslation(CGFloat tx, CGFloat ty)(平移...
分类:
移动开发 时间:
2015-06-14 16:47:53
阅读次数:
168
怎样设置包括第一栏在内相同高度的section(小技巧,虽然容易但容易忽略)
*第一步,在viewdidload里将尾部设为0,table.sectionFooterHeight = 0;(代理方法)- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
...
分类:
移动开发 时间:
2015-05-25 22:38:07
阅读次数:
166
iOS中文字体自定义
//汉字字体倾斜
NSInteger number = 55;//倾斜值
CGAffineTransform matrix = CGAffineTransformMake(1, 0, tanf(number * (CGFloat)M_PI / 180), 1, 0, 0);
UIFontDescriptor *desc = [UIFontDescriptor fontDescriptorWithName:[UIFont systemFontOfSize:17].fontNam...
分类:
移动开发 时间:
2015-05-25 22:36:42
阅读次数:
164