博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[UIImageView]Frame Rectangles
阅读量:5064 次
发布时间:2019-06-12

本文共 1732 字,大约阅读时间需要 5 分钟。

Configuring the Bounds and Frame Rectangles

 
Property

The frame rectangle, which describes the view’s location and size in its superview’s coordinate system.

框架矩形描述了所属视图的在上一级视图中的坐标和大小

Declaration

SWIFT

var frame: 

OBJECTIVE-C

@property(nonatomicframe

Discussion

This rectangle defines the size and position of the view in its superview’s coordinate system. You use this rectangle during layout operations to size and position the view. Setting this property changes the point specified by the  property and the size in the  rectangle accordingly. The coordinates of the frame rectangle are always specified in points.

这个矩形定义了所属视图在上一级视图坐标系中的大小和位置。在布局操作的时候使用这个矩形来定位视图和设置视图的大小。设置这个属性会相应地改变 center 属性设置的点和 bounds 矩形设置的大小

WARNING

If the  property is not the identity transform, the value of this property is undefined and therefore should be ignored.

如果 transform 属性 不是恒等变换(?),frame属性的值是未定义的,那么frame属性的值应该被忽略。

Changing the frame rectangle automatically redisplays the receiver without invoking the  method. If you want the method invoked when the frame rectangle changes, set the  property to 

改变框架矩形自动地在没有调用 drawRect: 方法重新显示接收器。如果你想在frame改变的时候调用drawRect:方法,查看 UIViewContentModeRedraw 的contentMode 属性。

Changes to this property can be animated. However, if the  property contains a non-identity transform, the value of the frame property is undefined and should not be modified. In that case, you can reposition the view using the  property and adjust the size using the  property instead.

该值的改变可以是有动画的。然而,如果transform 属性包含了 非恒等 改变,frame属性的值是未定的也不应该被修改。在这种情况,你可以取而代之使用 center属性重新定位视图,使用 bounds 属性来调整它的大小。

Import Statement

import UIKit

Availability

Available in iOS 2.0 and later.

 

纯属原创,转载请注明! 

转载于:https://www.cnblogs.com/baaingSheep/p/4277924.html

你可能感兴趣的文章
在WPF中使用Caliburn.Micro搭建MEF插件化开发框架
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
UWP: 掌握编译型绑定 x:Bind
查看>>
asp.net core系列 35 EF保存数据(2) -- EF系列结束
查看>>
WPF程序加入3D模型
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
C#中的IEnumerable<T>知识点
查看>>
android访问链接时候报java.net.MalformedURLException: Protocol not found
查看>>
dwz ie10一直提示数据加载中
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Windows Phone Marketplace 发布软件全攻略
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
语义web基础知识学习
查看>>
hexo个人博客添加宠物/鼠标点击效果/博客管理
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
关于WPF的2000件事 02--WPF界面是如何渲染的?
查看>>
单元测试、、、
查看>>
SVN使用教程总结
查看>>
JS 浏览器对象
查看>>