如何用touchesMoved或其他方式控制动画
我有一些图片,当我的手指在ipad屏幕上移动时,它们会一一显示,如果我的手指停止,立即停止,我在touchesMoved函数中使用了以下代码,
if (j>1199) {
j=1000;
}
else {
NSString *imgPath=[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"%d",j] ofType:@"png"];
show360img.image=[UIImage imageWithContentsOfFile:imgPath];
j;
}
但它不能很好地工作,那么如何才能我控制这个动画?非常感谢
i have some pictures, they will show one by one when my finger moved on the screen of ipad,if my finger stoped,the stop at once,i use the following code in touchesMoved function
if (j>1199) {
j=1000;
}
else {
NSString *imgPath=[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"%d",j] ofType:@"png"];
show360img.image=[UIImage imageWithContentsOfFile:imgPath];
j;
}
but it doesn't work well,so how can i control this Animation?thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
j 没有增加。
增加 j 并尝试代码
j is not been incremented.
increment j and try the code