ios app 开发实现右滑返回上一页和点击栏目条能够返回顶部
迷茫
迷茫 2017-04-18 09:43:22
0
3
604

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

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(3)
Ty80

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

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

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

黄舟

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

Ty80

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];

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

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage