码迷,mamicode.com
首页 >  
搜索关键字:cgpoint    ( 294个结果
CGGeometry.h详解
本文转载至:http://blog.csdn.net/chengyingzhilian/article/details/7894195这些是在CGGeometry.h里的CGPoint、CGSize、CGRect、CGRectEdge实际上都是结构体struct CGPoint { CGFloat ...
分类:其他好文   时间:2014-08-13 14:46:36    阅读次数:224
iOS开发拓展篇—UIDynamic(捕捉行为)
iOS开发拓展篇—UIDynamic(捕捉行为)一、简介可以让物体迅速冲到某个位置(捕捉位置),捕捉到位置之后会带有一定的震动UISnapBehavior的初始化 - (instancetype)initWithItem:(id )item snapToPoint:(CGPoint)point;U....
分类:移动开发   时间:2014-08-08 21:09:56    阅读次数:454
uitableView 滚到底部判断
- (void) scrollViewDidScroll:(UIScrollView *)scrollView{ CGPoint offset = scrollView.contentOffset; // 当前滚动位移 CGRect bounds = scrollView.bounds...
分类:其他好文   时间:2014-08-05 15:32:49    阅读次数:207
iOS 判断scrollView是否滑动到底部
判断scrollView有没有滚动到视图的底部,用来判断下拉刷新的时间。等 - (void)scrollViewDidScroll:(UIScrollView *)scrollView1 { CGPoint offset = scrollView1.contentOffset; ...
分类:移动开发   时间:2014-08-05 13:30:39    阅读次数:226
弹出菜单
#import @interface DPopoverView : UIView+ (void)showPopoverAtPoint:(CGPoint)point inView:(UIView *)view withContentView:(UIView *)cView;- (void)showPo...
分类:其他好文   时间:2014-07-23 12:42:36    阅读次数:264
拖动视图
@interface MoveView : UIView{ CGPoint startPoint;}#import "MoveView.h"@implementation MoveView- (id)initWithFrame:(CGRect)frame{ self = [super i...
分类:其他好文   时间:2014-07-14 15:42:42    阅读次数:157
IOS开发中的CGFloat、CGPoint、CGSize和CGRect
IOS开发中的CGFloat、CGPoint、CGSize和CGRecthttp://developer.apple.com/library/ios/#documentation/GraphicsImaging/Reference/CGGeometry/Reference/reference.htm...
分类:移动开发   时间:2014-07-09 00:54:36    阅读次数:247
CGPoint和CGSize以及CGRect的一些方法~
标题里面的三个都是结构体有时候可能需要比较他们的一些逻辑关系例如CGPoint p1 ,p2;。。。。。。比较p1 和 p2是否相等,以前都是自己逐个比较的后来发现有CGPointEqualToPoint(p1,p2)~这样就会返回这两个CGPoint变量是否相等~同理还有CGSizeEqualTo...
分类:其他好文   时间:2014-07-05 22:01:08    阅读次数:252
在UIView上得到某一点的颜色值
-(UIColor*)colorOfPoint:(CGPoint)point{unsignedcharpixel[4]={0};CGColorSpaceRefcolorSpace=CGColorSpaceCreateDeviceRGB();CGContextRefcontext=CGBitmapContextCreate(pixel,1,1,8,4,colorSpace,kCGImageAlphaPremultipliedLast);CGContextTranslateCTM(context,-point.x..
分类:其他好文   时间:2014-07-02 06:28:29    阅读次数:194
ios创建画笔的例子(双笔画效果)
定义一个UIView:主要是在这个View里面加一个UIImageView,画图都在这个UIImageView里面进行 @property(nonatomic) CGPoint prePoint; //手指在进入move事件之前的那个点 @property(nonatomic) CGPoint oppsitePoint; //手指在进入move事件之前的那个点 @property(nonat...
分类:移动开发   时间:2014-07-01 09:04:36    阅读次数:359
294条   上一页 1 ... 26 27 28 29 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!