1、初识:CALayer的UIView内部的一个层,在IOS中所有能显示内容在屏幕上是的控件,其本质都是因为这个内部的layer层。当一个UIView要显示内容的时候,会调用-(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx 方...
分类:
其他好文 时间:
2014-08-12 00:02:13
阅读次数:
266
ios UIView setFrame not working:很奇怪吧,又不报错,打印frame正常,可就是frame set无效。最简单的方法取interface builder 对该xib取消选择auto layout;
分类:
移动开发 时间:
2014-08-11 21:07:52
阅读次数:
195
UITableView设置背景图片:即设置tableView的backgroundViewUIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imag...
分类:
其他好文 时间:
2014-08-11 20:40:52
阅读次数:
192
UIKit提供了一组控件:UISwitch开关、UIButtonbutton、UISegmentedControl分段控件、UISlider滑块、UITextField文本字段控件、UIPageControl分页控件。控件是对UIView派生类的有用增强及补充,并能够直接附着于导航栏、表格单元,甚至...
分类:
移动开发 时间:
2014-08-11 14:29:32
阅读次数:
188
当我们想做一个弹出式菜单时,想将导航栏也一起盖住不显示的话,可以用如下语句实现:UIView* myView = /* 你自定义的view */;UIWindow* currentWindow = [UIApplication sharedApplication].keyWindow;[curren...
分类:
移动开发 时间:
2014-08-11 11:28:52
阅读次数:
1012
+ (void)beginAnimations:(NSString *)animationID context:(void *)context; // additional context info passed to will start/did stop selectors. begin/com...
分类:
其他好文 时间:
2014-08-10 15:38:30
阅读次数:
232
一 UIVIew 常见属性1.frame 位置和尺寸(以父控件的左上角为原点(0,0))2.center 中点 (以父控件的左上角为原点(0,0))3.bounds 位置和尺寸(以自己的左上角为原点 (0,0))4.transform 形变属性(缩放,旋转)5.backgroundColor 背景颜...
分类:
其他好文 时间:
2014-08-09 18:16:29
阅读次数:
216
如果你尝试,并设置缩放比例为零,你会得到这个消息:: CGAffineTransformInvert: singular matrix.
[UIView
animateWithDuration:0.5
animations:^{
CGAffineTransform newTransform =
CGAffineTransformScale(my...
分类:
移动开发 时间:
2014-08-09 15:56:58
阅读次数:
584
绘制虚线的UIViewCAShapeLayer配合贝塞尔曲线可以绘制曲线,笔者继承了一个UIView的子类,并将改子类的backedLayer替换为CAShapeLayer,以此来实现绘制虚线的效果.绘制出各种虚线的效果图:实现的源码:LineDashView.h 与 LineDashView.m/...
分类:
其他好文 时间:
2014-08-09 00:00:16
阅读次数:
493
//***简单动画 [UIView animateWithDuration:3 animations:^{// _animationView.center = CGPointMake(arc4random()%320, arc4random()%480);//改变中心点// _animat...
分类:
移动开发 时间:
2014-08-07 22:49:55
阅读次数:
281