zoukankan      html  css  js  c++  java
  • ios开发之--CGRectGetXxx方法图解 和代码NSLog输出值

    - (void)test {  
        CGRect rect = CGRectMake(10, 20, 150, 30);  
      
        // 最小Y坐标,即矩形的顶部top y坐标:   minY = rect.y = 20.000000  
        NSLog(@"CGRectGetMinY   = y             = %f", CGRectGetMinY(rect));     
        // 最大Y坐标,即矩形的底部bottom y坐标:maxY = y + height = 50  
        NSLog(@"CGRectGetMaxY   = y + height    = %f", CGRectGetMaxY(rect));    
        // 最小x坐标,即矩形的左边x left坐标 : minX = x = 10  
        NSLog(@"CGRectGetMinX   = x             = %f", CGRectGetMinX(rect));    
        // 最大x坐标,集矩形的右边横坐标right maxX = x + width = 10 + 150 = 160  
        NSLog(@"CGRectGetMaxX   = x + width     = %f", CGRectGetMaxX(rect));    
        // 中点横坐标:midX = x + width/2 = 10 +  150/2 = 10 + 75 = 85  
        NSLog(@"CGRectGetMidX   = x + width/2   = %f", CGRectGetMidX(rect));    
        // 中点纵坐标:midY = y + height / 2 = 20 + 30/2 = 20 + 15 = 35  
        NSLog(@"CGRectGetMidY   = y + height /2 = %f", CGRectGetMidY(rect));     
        NSLog(@"CGRectGetWidth  = rect.width    = %f", CGRectGetWidth(rect));  // width = 150  
        NSLog(@"CGRectGetHeight = rect.height   = %f", CGRectGetHeight(rect)); // height = 30  
    }

    图解:

  • 相关阅读:
    翘边阴影
    原生js实现 拖拽事件
    js实现计算器
    js实现选项卡
    js随机生成座号
    1.记住密码 提示框
    媒体查询
    高性能JavaScript 读书笔记
    調用WEB services
    Dragon Quest VIII 流程攻略(繁体中文完结版)
  • 原文地址:https://www.cnblogs.com/hero11223/p/7940999.html
Copyright © 2011-2022 走看看