//添加所有的手势-(void)addGestureRecognizerToView:(UIView*)view{//旋转手势UIRotationGestureRecognizer*rotationGestureRecognizer=[[UIRotationGestureRecognizerallo...
分类:
移动开发 时间:
2014-07-16 21:03:23
阅读次数:
248
1、解释在 UIView 中有一个autoresizingMask的属性,它对应的是一个枚举的值(如下),属性的意思就是自动调整子控件与父控件中间的位置,宽高。123456789enum{UIViewAutoresizingNone = 0,UIViewAutoresizingFlexibleLef...
分类:
其他好文 时间:
2014-07-16 20:52:12
阅读次数:
131
Quartz 2D绘图只能在UIView中重写drawRect:方法中进行绘制,其他地方都无效,会报错。绘制过程:1. 获取上下文 CGContextRef context = UIGraphicsGetCurrentContext();2. 添加图形 CGContextAddRect(contex...
分类:
其他好文 时间:
2014-07-16 20:24:07
阅读次数:
110
1. 执行Main函数(在main.m文件中)2. 加载MainStoryborad.storyboard文件 * 创建ViewController文件 * 根据storyboard文件中描述创建ViewController中的UIView(父层) * 创建UIView内部的所有子控件 * ...
分类:
移动开发 时间:
2014-07-13 12:37:50
阅读次数:
174
CGRectrect =CGRectMake(100,100,100,100); UIView* bgView = [[UIViewalloc]initWithFrame:rect]; bgView.backgroundColor= [UIColorgrayColor]; [self.viewa.....
分类:
移动开发 时间:
2014-07-11 22:44:49
阅读次数:
250
今天一位童鞋问我个问题,大意是popoverController不会显示。经过我寻找问题发现下面这个方法不好掌控。为什么说他不好掌控那。我这个给大家带来一个列子,通过这个列子来介绍PopoverController的详细用法,以及这个方法的2中传参技巧。
- (void)presentPopoverFromRect:(CGRect)rect inView:(UIView *)view per...
分类:
其他好文 时间:
2014-07-10 23:17:25
阅读次数:
257
1 uiview动画
[UIView beginAnimations:@"Curl"context:nil];//动画开始
[UIView setAnimationDuration:0.75];
[UIView setAnimationDelegate:self];
[UIView setAnimationTransition:UIViewAnimationTran...
分类:
其他好文 时间:
2014-07-10 19:32:01
阅读次数:
218
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *redView = [[UIView...
分类:
其他好文 时间:
2014-07-10 16:50:02
阅读次数:
185
import“ViewController.h"@interface ViewController()@end@implementation ViewController-(void)viewDidload{[super viewDidload];UIView *redview=[[UIView a...
分类:
移动开发 时间:
2014-07-10 15:48:47
阅读次数:
263
在UITableView初始化时加上以下代码即可:
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
效果演示:...
分类:
移动开发 时间:
2014-07-08 20:24:33
阅读次数:
283