suchen

Heim  >  Fragen und Antworten  >  Hauptteil

ios app 开发实现右滑返回上一页和点击栏目条能够返回顶部

app 要实现这样的效果是只能够用源生开发的么?
使用第三方的混合开发是不是实现不了这些功能,如果可以的话要怎么做
我有个项目是用appcan开发的,客户想实现这些功能,我要怎么实现

迷茫迷茫2771 Tage vor606

Antworte allen(3)Ich werde antworten

  • PHP中文网

    PHP中文网2017-04-18 09:45:22

    这种的我记得他们有提供这样的方法吧,右滑之类的。
    这样么,我搜了下:

    uexWindow.onSwipeRight = function(){
            //TODO
    }

    如果用js也可以实现吧,右滑直接history.back(-1);
    然后点击返回顶部是什么鬼。

    Antwort
    0
  • 黄舟

    黄舟2017-04-18 09:45:22

    http://www.jianshu.com/p/e183...
    http://www.jianshu.com/p/7379...
    网上很多资料,自己去实践吧

    Antwort
    0
  • PHP中文网

    PHP中文网2017-04-18 09:45:22

    1.右划返回上一页,可以添加手势操作
    例如:
    UISwipeGestureRecognizer *swipeGesR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeGes:)];

        swipeGesR.direction = UISwipeGestureRecognizerDirectionRight;
        [_headImageV addGestureRecognizer:swipeGesR];
        

    -(void)swipeGes:(UISwipeGestureRecognizer *)swipe
    {
    //滑动事件的操作。。。
    }

    2.点击“栏目”返回到顶部,用UITableView列表这样操作
    例如:
    NSInteger row = 0;
    [_tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] animated:YES scrollPosition:UITableViewScrollPositionBottom];

    //希望能够帮助你解决问题^_^。。。

    Antwort
    0
  • StornierenAntwort