gpt4 book ai didi

iphone - 图像应该遵循 iphone 中以前的触摸点?

转载 作者:行者123 更新时间:2023-11-28 23:10:16 26 4
gpt4 key购买 nike

enter image description here

触摸开始时显示图像,触摸移动时图像跟随触摸事件,触摸结束时图像消失

 - (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { 
[super touchesBegan:touches withEvent:event];
newgicg.hidden = NO;
NSArray *allTouches = [touches allObjects];
UITouch *touch = [touches anyObject];
CGPoint touchLocation = [touch locationInView:touch.view];
int count = [allTouches count];
if (count == 1) {

newgicg.center = touchLocation;

}

}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesMoved:touches withEvent:event];

UITouch *touch = [touches anyObject];
CGPoint touchLocation = [touch locationInView:touch.view];

newgicg.center = touchLocation;

[self.view addSubview:newgicg];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesEnded:touches withEvent:event];

newgicg.hidden = YES;


}

我想要类似的东西,当光标在屏幕上移动时跟随星星的集合。我希望星星在光标在屏幕上移动的任何地方闪烁并消失

最佳答案

- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { 
[super touchesBegan:touches withEvent:event];

}


- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesMoved:touches withEvent:event];

UITouch *touch = [touches anyObject];
CGPoint touchLocation = [touch locationInView:touch.view];
UIImageView *imageView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"simple-apple.png"]];
imageView.center = touchLocation;
[self.view addSubview:imageView];
[imageView release];

}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesEnded:touches withEvent:event];
for (UIView *view in [self.view subviews]) {
[view removeFromSuperview];
}

}

请尝试使用此代码,只需替换图片的名称即可。

编辑:我忘记提到的一件事是,您可以保留一个柜台。以这种方式添加并删除它们的 subview ,否则它也可能会删除之前存在于 View 中的其他 View 。

关于iphone - 图像应该遵循 iphone 中以前的触摸点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8472116/

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