我使用以下代码更改 UIView 的位置,而不更改视图的大小。
CGRect f = aView.frame;
f.origin.x = 100; // new x
f.origin.y = 200; // new y
aView.frame = f;
有没有更简单的方法来改变视图位置?
aView.center = CGPointMake(150, 150); // set center
或者
aView.frame = CGRectMake( 100, 200, aView.frame.size.width, aView.frame.size.height ); // set new position exactly
或者
aView.frame = CGRectOffset( aView.frame, 10, 10 ); // offset by an amount
编辑:
我还没有编译它,但它应该可以工作:
#define CGRectSetPos( r, x, y ) CGRectMake( x, y, r.size.width, r.size.height )
aView.frame = CGRectSetPos( aView.frame, 100, 200 );
我有同样的问题。我做了一个简单的 UIView 类别来解决这个问题。
。H
#import <UIKit/UIKit.h>
@interface UIView (GCLibrary)
@property (nonatomic, assign) CGFloat height;
@property (nonatomic, assign) CGFloat width;
@property (nonatomic, assign) CGFloat x;
@property (nonatomic, assign) CGFloat y;
@end
.m
#import "UIView+GCLibrary.h"
@implementation UIView (GCLibrary)
- (CGFloat) height {
return self.frame.size.height;
}
- (CGFloat) width {
return self.frame.size.width;
}
- (CGFloat) x {
return self.frame.origin.x;
}
- (CGFloat) y {
return self.frame.origin.y;
}
- (CGFloat) centerY {
return self.center.y;
}
- (CGFloat) centerX {
return self.center.x;
}
- (void) setHeight:(CGFloat) newHeight {
CGRect frame = self.frame;
frame.size.height = newHeight;
self.frame = frame;
}
- (void) setWidth:(CGFloat) newWidth {
CGRect frame = self.frame;
frame.size.width = newWidth;
self.frame = frame;
}
- (void) setX:(CGFloat) newX {
CGRect frame = self.frame;
frame.origin.x = newX;
self.frame = frame;
}
- (void) setY:(CGFloat) newY {
CGRect frame = self.frame;
frame.origin.y = newY;
self.frame = frame;
}
@end
UIView 也有一个center
属性。如果您只想移动位置而不是调整大小,您可以更改它 - 例如:
aView.center = CGPointMake(50, 200);
否则,您将按照发布的方式进行操作。
我发现了一种类似的方法(它也使用了一个类别)和 gcamp 的答案,这对我有很大帮助。在您的情况下,就像这样简单:
aView.topLeft = CGPointMake(100, 200);
但是,如果您想例如使用另一个视图将水平居中和向左居中,您可以简单地:
aView.topLeft = anotherView.middleLeft;
在使用自动布局的情况下,所选答案中的解决方案不起作用。如果您使用自动布局查看视图,请查看此答案。
CGRectOffset
此后已被实例方法取代offsetBy
。
https://developer.apple.com/reference/coregraphics/cgrect/1454841-offsetby
例如,过去是什么
aView.frame = CGRectOffset(aView.frame, 10, 10)
现在是
aView.frame = aView.frame.offsetBy(dx: CGFloat(10), dy: CGFloat(10))
aView.frame = CGRectMake(100, 200, aView.frame.size.width, aView.frame.size.height);
在我的工作中,我们不使用宏。所以@TomSwift 提供的解决方案启发了我。我看到了 CGRectMake 的实现并创建了相同的 CGRectSetPos 但没有宏。
CG_INLINE CGRect
CGRectSetPos(CGRect frame, CGFloat x, CGFloat y)
{
CGRect rect;
rect.origin.x = x; rect.origin.y = y;
rect.size.width = frame.size.width; rect.size.height = frame.size.height;
return rect;
}
要使用我只放框架,X和Y
viewcontroller.view.frame = CGRectSetPos(viewcontroller.view.frame, 100, 100);
为我工作^_^
如果有人需要轻松Swift
扩展以轻松更改UIView
边距 - 您可以使用它
view.top = 16
view.right = self.width
view.bottom = self.height
self.height = view.bottom
@TomSwift 斯威夫特 3 答案
aView.center = CGPoint(x: 150, y: 150); // set center
或者
aView.frame = CGRect(x: 100, y: 200, width: aView.frame.size.width, height: aView.frame.size.height ); // set new position exactly
或者
aView.frame = aView.frame.offsetBy(dx: CGFloat(10), dy: CGFloat(10)) // offset by an amount
这是 Swift 3 的答案,因为 Swift 3 不接受“Make”。
aView.center = CGPoint(x: 200, Y: 200)
另一种方式:
CGPoint position = CGPointMake(100,30);
[self setFrame:(CGRect){
.origin = position,
.size = self.frame.size
}];
我只保存尺寸参数并更改原点。
迅速
view.frame = view.frame.offsetBy(dx: offsetX, dy: offsetY)