如何在封面流中将图像锁定在中心
我在我的项目中使用开放流库。我要做的是,当用户双击图像时,它应该转到另一个视图控制器。一切进展顺利,但问题是当我实现这个时,图像没有锁定在中心。 问题所在的代码:-
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
NSSet *allTouches=[event allTouches];
UITouch *touch=[[allTouches allObjects]objectAtIndex:0];
int intval=[touch tapCount];
if (intval==1) {
nslog(@"one tap");
[self singletapMethod];
}
else if(intval==2)
{
nslog(@"double tap");
[self doubletapMethod];
}
}
I am using the open flow library in my project.What I have to do is when the user double tap the image it should go to aniother view controller.It is going well but the problem is when I am implementing this the image is not locking at center.
code where the problem is:-
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
NSSet *allTouches=[event allTouches];
UITouch *touch=[[allTouches allObjects]objectAtIndex:0];
int intval=[touch tapCount];
if (intval==1) {
nslog(@"one tap");
[self singletapMethod];
}
else if(intval==2)
{
nslog(@"double tap");
[self doubletapMethod];
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论