码迷,mamicode.com
首页 > 移动开发 > 详细

ios坐标位置转换

时间:2016-05-13 10:37:21      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

//ios常用坐标转换来处理一些下拉框队形的按钮的位置,我以最下面两个来进行一下个人的理解,不足之处多多见谅

- (CGPoint)convertPoint:(CGPoint)point toView:(nullable UIView *)view;

- (CGPoint)convertPoint:(CGPoint)point fromView:(nullable UIView *)view;

 

- (CGRect)convertRect:(CGRect)rect toView:(nullable UIView *)view;

- (CGRect)convertRect:(CGRect)rect fromView:(nullable UIView *)view;

 

/*

  将当前的视图的frame 转换成到距离目标视图的距离,返回真实视图的距离

    rc值 = view.fram+rect

*/

  //view1为目标视图 self.view表示当前视图

    CGRect rect = CGRectMake(view1.frame.size.width/2, view1.frame.size.height, view1.frame.size.width, view1.frame.size.height);

       CGRect rc = [view2 convertRect:rect fromView:view1];

    view2.frame =rc;

 

  /*

     将当前的视图的frame 转换成到目标视图的距离 返回到目标位置的距离

     frame = rect -view.frame

    */

    CGRect rect = CGRectMake(200, 200, view1.frame.size.width, view1.frame.size.height);

    CGRect rc = [view2 convertRect:rect toView:view1];

    view2.frame =rc;

    NSLog(@"%@",NSStringFromCGRect(rc));

 

ios坐标位置转换

标签:

原文地址:http://www.cnblogs.com/qitiandasheng/p/5486714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!