如何在封面流中将图像锁定在中心

发布于 2024-11-14 08:54:20 字数 502 浏览 2 评论 0原文

我在我的项目中使用开放流库。我要做的是,当用户双击图像时,它应该转到另一个视图控制器。一切进展顺利,但问题是当我实现这个时,图像没有锁定在中心。 问题所在的代码:-

    - (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文