gpt4 book ai didi

IOS UIDynamicAnimator masksToBounds 不会将碰撞作为边界

转载 作者:行者123 更新时间:2023-11-28 18:55:45 27 4
gpt4 key购买 nike

我在 Xcode 7 中工作,应用程序适用于 IOS 9。目标是使用 UIDynamicAnimator、UIGravityBehavior 和 UICollisionBehavior 让圆形物体表现得像球一样。一切正常,除了 UIViews(代表球)看起来是圆形的,但在碰撞过程中表现得像矩形。构建和添加“球”的代码是:

-(void) addBall{
CGRect frame;
frame.origin=CGPointZero;
frame.size = [self randomsize];
int x = (arc4random()%(int)self.inputView.bounds.size.width);
frame.origin.x = x;
UIView *bullet = [[UIView alloc] initWithFrame:frame];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10,10,40,20)];
label.text = @"label";
bullet.backgroundColor = [self randomColor];
bullet.layer.cornerRadius = bullet.frame.size.width/2;
bullet.layer.borderWidth = 2.0;
bullet.layer.borderColor = [UIColor blackColor].CGColor;
bullet.layer.masksToBounds=YES;

[bullet addSubview:label];
[self.inputView addSubview:bullet];
[self.gravity addItem:bullet];
[self.collider addItem:bullet];
}

需要设置哪个属性才能使这些对象表现得像圆形?

下面是应用程序的屏幕,显示重力和碰撞影响形状如何放置在地面/边界上。我在屏幕截图上绘制了矩形边框以显示不可见的真实边框,但防止球表现为圆形对象。

application screenshot1

最佳答案

您应该继承 UIView 并重载 collisionBoundsType。像这样的东西:

-(UIDynamicItemCollisionBoundsType) collisionBoundsType
{
return UIDynamicItemCollisionBoundsTypeEllipse;
}

关于IOS UIDynamicAnimator masksToBounds 不会将碰撞作为边界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33468201/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com