码迷,mamicode.com
首页 >  
搜索关键字:cgpoint    ( 294个结果
Xcode--创建动画
1.动画(头部-开始动画)[UIView beginAnimations:nil context:nil];2.设置动画的执行时间[UIView setAnimationDuration:1.0];3.向上移动// CGPoint tempCenter = _btn.center;CGRect te...
分类:其他好文   时间:2014-12-05 10:24:44    阅读次数:189
【Foundation Frame】Struct
// //  main.m //  struct // //  Created by mac on 14-12-2. //  Copyright (c) 2014年 mac. All rights reserved. // #import #pragma mark 基本数据类型---- void baseType() {     //unsigned l...
分类:其他好文   时间:2014-12-04 20:02:22    阅读次数:167
自定义实现moveable button
实现的效果图:自定义MVButton,继承自UIButton.属性声明如下:@property (nonatomic) CGPoint beginPoint;@property (nonatomic) BOOL dragEnable;//自定义button对触摸事件进行响应- (void)to...
分类:其他好文   时间:2014-11-30 13:48:18    阅读次数:156
UIScrollView
@property(nonatomic) CGPoint contentOffset;这个属性用来表示UIScrollView滚动的位置@property(nonatomic) CGSize contentSize;这个属性用来表示UIScrollView内容的尺寸,滚动范围(能滚多远)@prope...
分类:其他好文   时间:2014-11-25 23:11:43    阅读次数:188
[OC Foundation框架 - 13] NSValue
NSNumber能够包装基本数据类型称为OC对象,是因为继承了NSValue包装结构体成OC对象1.自带结构体 1 void value() 2 { 3 CGPoint point = CGPointMake(10, 10); 4 NSValue *obj = [NSValue va...
分类:其他好文   时间:2014-11-24 20:46:37    阅读次数:252
有关UIView、subview的几个基础知识点-IOS开发 (实例)
环境是xcode4.3首先要弄懂几个基本的概念。一)三个结构体:CGPoint、CGSize、CGRect1. CGPointC代码 /*Points.*/structCGPoint{CGFloatx;CGFloaty;};typedefstructCGPointCGPoint;/* Points....
分类:移动开发   时间:2014-11-14 12:21:53    阅读次数:300
判断某个点是否在某个view上
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint pt = [touch locationInView:self.view].....
分类:其他好文   时间:2014-11-12 19:38:16    阅读次数:192
【IOS】- ScrollView-01
?CGSize contentSize:设置UIScrollView的滚动范围?CGPoint contentOffset:UIScrollView当前滚动的位置?UIEdgeInsets contentInset:增加滚动视图四周的增加滚动范围1.创建 UIScrollView *scrol...
分类:移动开发   时间:2014-11-07 11:10:13    阅读次数:256
UITableView/UIScrollView 不能响应TouchBegin 的处理 及窥见 hitTest:withEvent:
重写touchBegin 方法是不行的,在UITableView/UIScrollView解决方案 重写hitTest:withEvent: 在他们的子类中- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event { s...
分类:其他好文   时间:2014-11-01 13:20:22    阅读次数:303
UIScrollView学习-01
?@property(nonatomic) CGPoint contentOffset; ?这个属性用来表示UIScrollView滚动的位置? ?@property(nonatomic) CGSize contentSize;? ?这个属性用来表示UIScrollView内容的尺寸,滚动范围(能滚多远) ...
分类:其他好文   时间:2014-10-30 22:51:14    阅读次数:276
294条   上一页 1 ... 23 24 25 26 27 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!