- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让多个图像(在本例中为篮球)在屏幕上移动。
如何创建多个具有相同名称的球?我有一个已经在四处移动的球。所以所有其他球应该使用相同的计算和相同的属性名称来进行碰撞和类似的事情。
有人可以帮助我吗?我很了解 Java,但不了解 Obj C。
编辑:
ball.center = CGPointMake(ball.center.x + ballmovement.x, ball.center.y + ball movement.y);
if (ball.center.x > self.view.frame.size.width || ball.center.x < 0) {
ballmovement.x = -1* ballmovement.x;
}
if (ball.center.y > self.view.frame.size.height || ball.center.y < 0) {
ballmovement.y = -1* ballmovement.y;
这是我的简单计算。这段代码在我的循环方法中。此循环方法由我的 viewDidLoad 方法中的此代码调用:
[NSTimer scheduledTimerWithTimeInterval:0.050 target:self selector:@selector(loop) userInfo:nil repeats:YES];
在我写的MainView.h文件中
BasketballView *ball;
新的球是通过我的按钮操作方法中的这段代码创建的:
for (int x = 0; x < numberOfBalls; x++)
{
ball = [[BasketballView alloc]initWithFrame:CGRectMake(arc4random()%100,arc4random()%100, 40, 40) andCustomProperty:@"my string" andAnotherProperty:100];
[self.view addSubview:ball];
}
当我运行我的应用程序时,只有一个球在移动!你需要更多代码吗?谢谢你的帮助
编辑 2:
现在每个球都在移动,但它们移动不正确..这就是我所做的。我创建了一个 NSMuteableArray。我在按钮操作方法中添加了这段代码:
[array addObject:ball];
之后,我在循环方法中添加了一些代码。这是我现在拥有的新循环代码:
for (int i=0; i<array.count;i++){
ball = [array objectAtIndex:i];
ball.center = CGPointMake(ball.center.x + ballmovement.x, ball.center.y + ballmovement.y);
}
if (ball.center.x > self.view.frame.size.width || ball.center.x < 0) {
ballmovement.x = -1* ballmovement.x;
}
if (ball.center.y > self.view.frame.size.height || ball.center.y < 0) {
ballmovement.y = -1* ballmovement.y;
现在,当一个球击中边界时,每个球都会改变方向。所以所有其他球都像这个球一样移动。他们无视寄宿生。只有当这个球击中边界时,他们才会改变方向。
如果我将球运动的代码放在 for 循环中,则每次其中一个球击中边界时,球都会改变方向。他们疯狂地移动,因为每 0.5 秒就有一个球击中其中一个边界
最佳答案
我认为您要寻找的是一种从同一类添加一堆对象的方法。为此,我建议您覆盖 UIImageView
。类(class)。如果这样做,您可以为球添加自定义属性。请参见下面的示例:
在您的头文件中,您将拥有以下内容:
#import <UIKit/UIKit.h>
@interface BasketBallView : UIImageView
@property (nonatomic, strong) NSString *customProperty;
@property (assign) NSInteger anotherProperty;
//custom init method if you want
- (id) initWithFrame:(CGRect)frame andCustomProperty:(NSString *)CustomProperty andAnotherProperty:(NSInteger)AnotherProperty;
-(void)startMovement;
@end
实现应该是这样的:
#import "BasketBallView.h"
@implementation BasketBallView
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setImage:[UIImage imageNamed:@"your_bb_image.png"]];
}
return self;
}
-(id) initWithFrame:(CGRect)frame andCustomProperty:(NSString *)CustomProperty andAnotherProperty:(NSInteger)AnotherProperty
{
self = [self initWithFrame:frame];
if (self) {
self.customProperty = CustomProperty;
self.anotherProperty = AnotherProperty;
}
return self;
}
-(void)startMovement{
[NSTimer scheduledTimerWithTimeInterval:0.050 target:self selector:@selector(loop) userInfo:nil repeats:YES];
}
-(void)moveBall{
self.center = CGPointMake(self.center.x + ballmovement.x, self.center.y + ballmovement.y);
if (self.center.x > self.superview.frame.size.width || self.center.x < 0) {
ballmovement.x = -1* ballmovement.x;
}
if (self.center.y > self.superview.frame.size.height || self.center.y < 0) {
ballmovement.y = -1* ballmovement.y;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
@end
然后要从您的 View Controller 使用和访问您的对象,请按以下方式进行:
BasketBallView *bb = [[BasketBallView alloc]initWithFrame:CGRectMake(0, 0, 100, 100) andCustomProperty:@"my string" andAnotherProperty:100];
[self.view addSubview:bb];
当然,您可以将上面的代码行放入循环中,然后多次将其添加到 View 中。
编辑:
如果你想添加BasketBallView
到 Interface Builder 的 View ,您需要自定义 initWithCoder
实现文件中的方法。在该方法中,您将类似地设置图像等。
我建议您不要添加 BasketBallView
然而,通过 Interface Builder。由于您需要随机数量的球,因此您需要从代码中添加它们并使用我上面概述的方法。您可以像这样添加它们:
for(int i = 0; i < yourRandomNumber; i++){
BasketBallView *bb = [[BasketBallView alloc]initWithFrame:CGRectMake(0, 0, 100, 100) andCustomProperty:@"my string" andAnotherProperty:100];
[self.view addSubview:bb];
}
您不能将 View 的副本添加到另一个 View ,换句话说,您不能在 IB 中创建球,然后在代码中复制它并将其添加到您的 View 。
我添加到类中的属性只是一些自定义的示例,您可以根据需要添加到类中。
您当然仍然可以使用 center
自BasketBallView
以来的属性(property)是 UIImageView
的子类,因此继承了所有 UIImageView
属性。
关于iphone - 如何添加具有相同属性的多个 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18402074/
我创建了一个用户可以添加测试的字段。这一切运行顺利我只希望当用户点击(添加另一个测试)然后上一个(添加另一个测试)删除并且这个显示在新字段中。 所有运行良好的唯一问题是点击(添加另一个字段)之前添加另
String[] option = {"Adlawan", "Angeles", "Arreza", "Benenoso", "Bermas", "Brebant
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我正在努力将 jQuery 滚动功能添加到 nav-tab (Bootstrap 3)。我希望用户能够选择他们想要的选项卡,并在选项卡内容中有一个可以平滑滚动到 anchor 的链接。这是我的代码,可
我正在尝试在用户登录后再添加 2 个 ui 选项卡。首先,我尝试做一个之后。 $('#slideshow').tabs('remove', '4'); $("#slideshow ul li:last
我有一个包含选择元素的表单,我想通过选择添加和删除其中一些元素。这是html代码(这里也有jsfiddle http://jsfiddle.net/txhajy2w/):
正在写这个: view.backgroundColor = UIColor.white.withAlphaComponent(0.9) 等同于: view.backgroundColor = UICo
好的,如果其中有任何信息,我想将这些列添加到一起。所以说我有 账户 1 2 3 . 有 4 个帐户空间,但只有 3 个帐户。我如何创建 java 脚本来添加它。 最佳答案 Live Example H
我想知道是否有一种有效的预制算法来确定一组数字的和/差是否可以等于不同的数字。示例: 5、8、10、2,使用 + 或 - 等于 9。5 - 8 = -3 + 10 = 7 + 2 = 9 如果有一个预
我似乎有一个卡住的 git repo。它卡在所有基本的添加、提交命令上,git push 返回所有内容为最新的。 从其他帖子我已经完成了 git gc 和 git fsck/ 我认为基本的调试步骤是
我的 Oracle SQL 查询如下- Q1- select hca.account_number, hca.attribute3, SUM(rcl.extended_amou
我正在阅读 http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingG
我正在尝试添加一个“加载更多”按钮并限制下面的结果,这样投资组合页面中就不会同时加载 1000 个内容,如下所示:http://typesetdesign.com/portfolio/ 我对 PHP
我遇到这个问题,我添加了 8 个文本框,它工作正常,但是当我添加更多文本框(如 16 个文本框)时,它不会添加最后一个文本框。有人遇到过这个问题吗?提前致谢。 Live Link: JAVASCRIP
add/remove clone first row default not delete 添加/删除克隆第一行默认不删除&并获取正确的SrNo(例如:添加3行并在看到问题后删除SrNo.2)
我编码this ,但删除按钮不起作用。我在控制台中没有任何错误.. var counter = 0; var dataList = document.getElementById('materi
我有一个类似数组的对象: [1:数组[10]、2:数组[2]、3:数组[2]、4:数组[2]、5:数组[3]、6:数组[1]] 我正在尝试删除前两个元素,执行一些操作,然后将它们再次插入到同一位置。
使用的 Delphi 版本:2007 你好, 我有一个 Tecord 数组 TInfo = Record Name : String; Price : Integer; end; var Info
我使用了基本的 gridster 代码,然后我声明了通过按钮添加和删除小部件的函数它工作正常但是当我将调整大小功能添加到上面的代码中时,它都不起作用(我的意思是调整大小,添加和删除小部件) 我的js代
title 323 323 323 title 323 323 323 title 323 323 323 JS $(document).keydown(function(e){
我是一名优秀的程序员,十分优秀!